@ibiz/model-core 0.0.24 → 0.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/out/app/iapplication.d.ts +8 -0
- package/out/app/isub-app-ref.d.ts +43 -0
- package/out/app/isub-app-ref.js +1 -0
- package/out/exports.d.ts +1 -0
- package/package.json +1 -1
- package/src/app/iapplication.ts +9 -0
- package/src/app/isub-app-ref.ts +48 -0
- package/src/exports.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,7 @@ import { IAppMethodDTO } from './iapp-method-dto';
|
|
|
2
2
|
import { IAppResource } from './iapp-resource';
|
|
3
3
|
import { IAppUtilPage } from './iapp-util-page';
|
|
4
4
|
import { IApplicationLogic } from './iapplication-logic';
|
|
5
|
+
import { ISubAppRef } from './isub-app-ref';
|
|
5
6
|
import { IAppPortlet } from './control/iapp-portlet';
|
|
6
7
|
import { IAppPortletCat } from './control/iapp-portlet-cat';
|
|
7
8
|
import { IAppDEUIAction } from './dataentity/iapp-deuiaction';
|
|
@@ -148,6 +149,13 @@ export interface IApplication extends IModelObject {
|
|
|
148
149
|
* 来源 getAllPSDEOPPrivs
|
|
149
150
|
*/
|
|
150
151
|
deopprivs?: IDEOPPriv[];
|
|
152
|
+
/**
|
|
153
|
+
* 子应用引用集合
|
|
154
|
+
*
|
|
155
|
+
* @type {ISubAppRef[]}
|
|
156
|
+
* 来源 getAllPSSubAppRefs
|
|
157
|
+
*/
|
|
158
|
+
subAppRefs?: ISubAppRef[];
|
|
151
159
|
/**
|
|
152
160
|
* 应用目录名称
|
|
153
161
|
* @type {string}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { IAppMenuModel } from './appmenu/iapp-menu-model';
|
|
2
|
+
import { IModelObject } from '../imodel-object';
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* @export
|
|
6
|
+
* @interface ISubAppRef
|
|
7
|
+
*/
|
|
8
|
+
export interface ISubAppRef extends IModelObject {
|
|
9
|
+
/**
|
|
10
|
+
* 应用实体界面行为组集合
|
|
11
|
+
*
|
|
12
|
+
* @type {string[]}
|
|
13
|
+
* 来源 getAllPSAppDEUIActionGroups
|
|
14
|
+
*/
|
|
15
|
+
appDEUIActionGroupIds?: string[];
|
|
16
|
+
/**
|
|
17
|
+
* 应用视图集合
|
|
18
|
+
*
|
|
19
|
+
* @type {string[]}
|
|
20
|
+
* 来源 getAllPSAppViews
|
|
21
|
+
*/
|
|
22
|
+
appViewIds?: string[];
|
|
23
|
+
/**
|
|
24
|
+
* 应用实体关系部件集合
|
|
25
|
+
*
|
|
26
|
+
* @type {string[]}
|
|
27
|
+
* 来源 getAllPSDEDRControls
|
|
28
|
+
*/
|
|
29
|
+
dedrcontrolIds?: string[];
|
|
30
|
+
/**
|
|
31
|
+
* 模型戳
|
|
32
|
+
* @type {string}
|
|
33
|
+
* 来源 getModelStamp
|
|
34
|
+
*/
|
|
35
|
+
modelStamp?: string;
|
|
36
|
+
/**
|
|
37
|
+
* 应用菜单模型
|
|
38
|
+
*
|
|
39
|
+
* @type {IAppMenuModel}
|
|
40
|
+
* 来源 getPSAppMenuModel
|
|
41
|
+
*/
|
|
42
|
+
appMenuModel?: IAppMenuModel;
|
|
43
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/out/exports.d.ts
CHANGED
|
@@ -51,6 +51,7 @@ export { IAppResource } from './app/iapp-resource';
|
|
|
51
51
|
export { IAppUtilPage } from './app/iapp-util-page';
|
|
52
52
|
export { IApplication } from './app/iapplication';
|
|
53
53
|
export { IApplicationLogic } from './app/iapplication-logic';
|
|
54
|
+
export { ISubAppRef } from './app/isub-app-ref';
|
|
54
55
|
export { IAppUILogic } from './app/logic/iapp-uilogic';
|
|
55
56
|
export { IAppUILogicRefView } from './app/logic/iapp-uilogic-ref-view';
|
|
56
57
|
export { IAppUILogicRefViewBase } from './app/logic/iapp-uilogic-ref-view-base';
|
package/package.json
CHANGED
package/src/app/iapplication.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { IAppMethodDTO } from './iapp-method-dto';
|
|
|
2
2
|
import { IAppResource } from './iapp-resource';
|
|
3
3
|
import { IAppUtilPage } from './iapp-util-page';
|
|
4
4
|
import { IApplicationLogic } from './iapplication-logic';
|
|
5
|
+
import { ISubAppRef } from './isub-app-ref';
|
|
5
6
|
import { IAppPortlet } from './control/iapp-portlet';
|
|
6
7
|
import { IAppPortletCat } from './control/iapp-portlet-cat';
|
|
7
8
|
import { IAppDEUIAction } from './dataentity/iapp-deuiaction';
|
|
@@ -167,6 +168,14 @@ export interface IApplication extends IModelObject {
|
|
|
167
168
|
*/
|
|
168
169
|
deopprivs?: IDEOPPriv[];
|
|
169
170
|
|
|
171
|
+
/**
|
|
172
|
+
* 子应用引用集合
|
|
173
|
+
*
|
|
174
|
+
* @type {ISubAppRef[]}
|
|
175
|
+
* 来源 getAllPSSubAppRefs
|
|
176
|
+
*/
|
|
177
|
+
subAppRefs?: ISubAppRef[];
|
|
178
|
+
|
|
170
179
|
/**
|
|
171
180
|
* 应用目录名称
|
|
172
181
|
* @type {string}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { IAppMenuModel } from './appmenu/iapp-menu-model';
|
|
2
|
+
import { IModelObject } from '../imodel-object';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @export
|
|
7
|
+
* @interface ISubAppRef
|
|
8
|
+
*/
|
|
9
|
+
export interface ISubAppRef extends IModelObject {
|
|
10
|
+
/**
|
|
11
|
+
* 应用实体界面行为组集合
|
|
12
|
+
*
|
|
13
|
+
* @type {string[]}
|
|
14
|
+
* 来源 getAllPSAppDEUIActionGroups
|
|
15
|
+
*/
|
|
16
|
+
appDEUIActionGroupIds?: string[];
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* 应用视图集合
|
|
20
|
+
*
|
|
21
|
+
* @type {string[]}
|
|
22
|
+
* 来源 getAllPSAppViews
|
|
23
|
+
*/
|
|
24
|
+
appViewIds?: string[];
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* 应用实体关系部件集合
|
|
28
|
+
*
|
|
29
|
+
* @type {string[]}
|
|
30
|
+
* 来源 getAllPSDEDRControls
|
|
31
|
+
*/
|
|
32
|
+
dedrcontrolIds?: string[];
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* 模型戳
|
|
36
|
+
* @type {string}
|
|
37
|
+
* 来源 getModelStamp
|
|
38
|
+
*/
|
|
39
|
+
modelStamp?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* 应用菜单模型
|
|
43
|
+
*
|
|
44
|
+
* @type {IAppMenuModel}
|
|
45
|
+
* 来源 getPSAppMenuModel
|
|
46
|
+
*/
|
|
47
|
+
appMenuModel?: IAppMenuModel;
|
|
48
|
+
}
|
package/src/exports.ts
CHANGED
|
@@ -51,6 +51,7 @@ export { IAppResource } from './app/iapp-resource';
|
|
|
51
51
|
export { IAppUtilPage } from './app/iapp-util-page';
|
|
52
52
|
export { IApplication } from './app/iapplication';
|
|
53
53
|
export { IApplicationLogic } from './app/iapplication-logic';
|
|
54
|
+
export { ISubAppRef } from './app/isub-app-ref';
|
|
54
55
|
export { IAppUILogic } from './app/logic/iapp-uilogic';
|
|
55
56
|
export { IAppUILogicRefView } from './app/logic/iapp-uilogic-ref-view';
|
|
56
57
|
export { IAppUILogicRefViewBase } from './app/logic/iapp-uilogic-ref-view-base';
|