@ibiz/model-core 0.1.60 → 0.1.61

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.
@@ -4,6 +4,7 @@ import { IAppDEDataExport } from './iapp-dedata-export';
4
4
  import { IAppDEDataImport } from './iapp-dedata-import';
5
5
  import { IAppDEField } from './iapp-defield';
6
6
  import { IAppDELogic } from './iapp-delogic';
7
+ import { IAppDEMap } from './iapp-demap';
7
8
  import { IAppDEMethod } from './iapp-demethod';
8
9
  import { IAppDEMethodDTO } from './iapp-demethod-dto';
9
10
  import { IAppDEPrint } from './iapp-deprint';
@@ -56,6 +57,13 @@ export interface IAppDataEntity extends IModelObject {
56
57
  * 来源 getAllPSAppDELogics
57
58
  */
58
59
  appDELogics?: IAppDELogic[];
60
+ /**
61
+ * 实体映射集合
62
+ *
63
+ * @type {IAppDEMap[]}
64
+ * 来源 getAllPSAppDEMaps
65
+ */
66
+ appDEMaps?: IAppDEMap[];
59
67
  /**
60
68
  * 应用实体方法DTO对象集合
61
69
  *
@@ -0,0 +1,22 @@
1
+ import { IModelObject } from '../../imodel-object';
2
+ /**
3
+ *
4
+ * @export
5
+ * @interface IAppDEMapAction
6
+ */
7
+ export interface IAppDEMapAction extends IModelObject {
8
+ /**
9
+ * 目标应用实体行为
10
+ *
11
+ * @type {string}
12
+ * 来源 getDstPSAppDEAction
13
+ */
14
+ dstAppDEActionId?: string;
15
+ /**
16
+ * 源应用实体行为
17
+ *
18
+ * @type {string}
19
+ * 来源 getSrcPSAppDEAction
20
+ */
21
+ srcAppDEActionId?: string;
22
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,22 @@
1
+ import { IModelObject } from '../../imodel-object';
2
+ /**
3
+ *
4
+ * @export
5
+ * @interface IAppDEMapDataSet
6
+ */
7
+ export interface IAppDEMapDataSet extends IModelObject {
8
+ /**
9
+ * 目标应用实体数据集
10
+ *
11
+ * @type {string}
12
+ * 来源 getDstPSAppDEDataSet
13
+ */
14
+ dstAppDEDataSetId?: string;
15
+ /**
16
+ * 源应用实体数据集
17
+ *
18
+ * @type {string}
19
+ * 来源 getSrcPSAppDEDataSet
20
+ */
21
+ srcAppDEDataSetId?: string;
22
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,22 @@
1
+ import { IModelObject } from '../../imodel-object';
2
+ /**
3
+ *
4
+ * @export
5
+ * @interface IAppDEMapField
6
+ */
7
+ export interface IAppDEMapField extends IModelObject {
8
+ /**
9
+ * 目标应用实体属性
10
+ *
11
+ * @type {string}
12
+ * 来源 getDstPSAppDEField
13
+ */
14
+ dstAppDEFieldId?: string;
15
+ /**
16
+ * 源应用实体属性
17
+ *
18
+ * @type {string}
19
+ * 来源 getSrcPSAppDEField
20
+ */
21
+ srcAppDEFieldId?: string;
22
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -28,6 +28,13 @@ export interface IAppUILogic extends ISysViewLogic {
28
28
  * 来源 getPSAppUILogicRefViews
29
29
  */
30
30
  appUILogicRefViews?: IAppUILogicRefView[];
31
+ /**
32
+ * 前端插件
33
+ *
34
+ * @type {string}
35
+ * 来源 getPSSysPFPlugin
36
+ */
37
+ sysPFPluginId?: string;
31
38
  /**
32
39
  * 界面逻辑类型
33
40
  * @type {string}
@@ -114,6 +114,13 @@ export interface IAppViewLogic extends IModelObject {
114
114
  * 来源 getPSAppViewLogic
115
115
  */
116
116
  appViewLogicId?: string;
117
+ /**
118
+ * 应用前端插件
119
+ *
120
+ * @type {string}
121
+ * 来源 getPSSysPFPlugin
122
+ */
123
+ sysPFPluginId?: string;
117
124
  /**
118
125
  * 部件名称
119
126
  * @type {string}
@@ -19,6 +19,13 @@ export interface IControlRender extends IModelObject {
19
19
  * 来源 getPSLayoutPanel
20
20
  */
21
21
  layoutPanel?: ILayoutPanel;
22
+ /**
23
+ * 前端插件
24
+ *
25
+ * @type {string}
26
+ * 来源 getPSSysPFPlugin
27
+ */
28
+ sysPFPluginId?: string;
22
29
  /**
23
30
  * 绘制器名称
24
31
  * @type {string}
@@ -74,6 +74,13 @@ export interface IDETree extends IMDAjaxControl, IControlContainer, IControlNavi
74
74
  * 来源 getTreeGridMode
75
75
  */
76
76
  treeGridMode?: number | 0 | 1 | 2;
77
+ /**
78
+ * 树视图样式
79
+ * @description 值模式 [树视图样式] {USER:用户自定义、 USER2:用户自定义2 }
80
+ * @type {( string | 'USER' | 'USER2')}
81
+ * 来源 getTreeStyle
82
+ */
83
+ treeStyle?: string | 'USER' | 'USER2';
77
84
  /**
78
85
  * 支持编辑
79
86
  * @type {boolean}
package/out/exports.d.ts CHANGED
@@ -33,6 +33,9 @@ export { IAppDELogicNode } from './app/dataentity/iapp-delogic-node';
33
33
  export { IAppDELogicNodeParam } from './app/dataentity/iapp-delogic-node-param';
34
34
  export { IAppDELogicParam } from './app/dataentity/iapp-delogic-param';
35
35
  export { IAppDEMap } from './app/dataentity/iapp-demap';
36
+ export { IAppDEMapAction } from './app/dataentity/iapp-demap-action';
37
+ export { IAppDEMapDataSet } from './app/dataentity/iapp-demap-data-set';
38
+ export { IAppDEMapField } from './app/dataentity/iapp-demap-field';
36
39
  export { IAppDEMethod } from './app/dataentity/iapp-demethod';
37
40
  export { IAppDEMethodDTO } from './app/dataentity/iapp-demethod-dto';
38
41
  export { IAppDEMethodDTOField } from './app/dataentity/iapp-demethod-dtofield';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.60",
3
+ "version": "0.1.61",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -4,6 +4,7 @@ import { IAppDEDataExport } from './iapp-dedata-export';
4
4
  import { IAppDEDataImport } from './iapp-dedata-import';
5
5
  import { IAppDEField } from './iapp-defield';
6
6
  import { IAppDELogic } from './iapp-delogic';
7
+ import { IAppDEMap } from './iapp-demap';
7
8
  import { IAppDEMethod } from './iapp-demethod';
8
9
  import { IAppDEMethodDTO } from './iapp-demethod-dto';
9
10
  import { IAppDEPrint } from './iapp-deprint';
@@ -62,6 +63,14 @@ export interface IAppDataEntity extends IModelObject {
62
63
  */
63
64
  appDELogics?: IAppDELogic[];
64
65
 
66
+ /**
67
+ * 实体映射集合
68
+ *
69
+ * @type {IAppDEMap[]}
70
+ * 来源 getAllPSAppDEMaps
71
+ */
72
+ appDEMaps?: IAppDEMap[];
73
+
65
74
  /**
66
75
  * 应用实体方法DTO对象集合
67
76
  *
@@ -0,0 +1,24 @@
1
+ import { IModelObject } from '../../imodel-object';
2
+
3
+ /**
4
+ *
5
+ * @export
6
+ * @interface IAppDEMapAction
7
+ */
8
+ export interface IAppDEMapAction extends IModelObject {
9
+ /**
10
+ * 目标应用实体行为
11
+ *
12
+ * @type {string}
13
+ * 来源 getDstPSAppDEAction
14
+ */
15
+ dstAppDEActionId?: string;
16
+
17
+ /**
18
+ * 源应用实体行为
19
+ *
20
+ * @type {string}
21
+ * 来源 getSrcPSAppDEAction
22
+ */
23
+ srcAppDEActionId?: string;
24
+ }
@@ -0,0 +1,24 @@
1
+ import { IModelObject } from '../../imodel-object';
2
+
3
+ /**
4
+ *
5
+ * @export
6
+ * @interface IAppDEMapDataSet
7
+ */
8
+ export interface IAppDEMapDataSet extends IModelObject {
9
+ /**
10
+ * 目标应用实体数据集
11
+ *
12
+ * @type {string}
13
+ * 来源 getDstPSAppDEDataSet
14
+ */
15
+ dstAppDEDataSetId?: string;
16
+
17
+ /**
18
+ * 源应用实体数据集
19
+ *
20
+ * @type {string}
21
+ * 来源 getSrcPSAppDEDataSet
22
+ */
23
+ srcAppDEDataSetId?: string;
24
+ }
@@ -0,0 +1,24 @@
1
+ import { IModelObject } from '../../imodel-object';
2
+
3
+ /**
4
+ *
5
+ * @export
6
+ * @interface IAppDEMapField
7
+ */
8
+ export interface IAppDEMapField extends IModelObject {
9
+ /**
10
+ * 目标应用实体属性
11
+ *
12
+ * @type {string}
13
+ * 来源 getDstPSAppDEField
14
+ */
15
+ dstAppDEFieldId?: string;
16
+
17
+ /**
18
+ * 源应用实体属性
19
+ *
20
+ * @type {string}
21
+ * 来源 getSrcPSAppDEField
22
+ */
23
+ srcAppDEFieldId?: string;
24
+ }
@@ -32,6 +32,14 @@ export interface IAppUILogic extends ISysViewLogic {
32
32
  */
33
33
  appUILogicRefViews?: IAppUILogicRefView[];
34
34
 
35
+ /**
36
+ * 前端插件
37
+ *
38
+ * @type {string}
39
+ * 来源 getPSSysPFPlugin
40
+ */
41
+ sysPFPluginId?: string;
42
+
35
43
  /**
36
44
  * 界面逻辑类型
37
45
  * @type {string}
@@ -155,6 +155,14 @@ export interface IAppViewLogic extends IModelObject {
155
155
  */
156
156
  appViewLogicId?: string;
157
157
 
158
+ /**
159
+ * 应用前端插件
160
+ *
161
+ * @type {string}
162
+ * 来源 getPSSysPFPlugin
163
+ */
164
+ sysPFPluginId?: string;
165
+
158
166
  /**
159
167
  * 部件名称
160
168
  * @type {string}
@@ -22,6 +22,14 @@ export interface IControlRender extends IModelObject {
22
22
  */
23
23
  layoutPanel?: ILayoutPanel;
24
24
 
25
+ /**
26
+ * 前端插件
27
+ *
28
+ * @type {string}
29
+ * 来源 getPSSysPFPlugin
30
+ */
31
+ sysPFPluginId?: string;
32
+
25
33
  /**
26
34
  * 绘制器名称
27
35
  * @type {string}
@@ -87,6 +87,14 @@ export interface IDETree
87
87
  */
88
88
  treeGridMode?: number | 0 | 1 | 2;
89
89
 
90
+ /**
91
+ * 树视图样式
92
+ * @description 值模式 [树视图样式] {USER:用户自定义、 USER2:用户自定义2 }
93
+ * @type {( string | 'USER' | 'USER2')}
94
+ * 来源 getTreeStyle
95
+ */
96
+ treeStyle?: string | 'USER' | 'USER2';
97
+
90
98
  /**
91
99
  * 支持编辑
92
100
  * @type {boolean}
package/src/exports.ts CHANGED
@@ -33,6 +33,9 @@ export { IAppDELogicNode } from './app/dataentity/iapp-delogic-node';
33
33
  export { IAppDELogicNodeParam } from './app/dataentity/iapp-delogic-node-param';
34
34
  export { IAppDELogicParam } from './app/dataentity/iapp-delogic-param';
35
35
  export { IAppDEMap } from './app/dataentity/iapp-demap';
36
+ export { IAppDEMapAction } from './app/dataentity/iapp-demap-action';
37
+ export { IAppDEMapDataSet } from './app/dataentity/iapp-demap-data-set';
38
+ export { IAppDEMapField } from './app/dataentity/iapp-demap-field';
36
39
  export { IAppDEMethod } from './app/dataentity/iapp-demethod';
37
40
  export { IAppDEMethodDTO } from './app/dataentity/iapp-demethod-dto';
38
41
  export { IAppDEMethodDTOField } from './app/dataentity/iapp-demethod-dtofield';