@ibiz/model-core 0.1.85 → 0.1.86

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.
@@ -1,3 +1,6 @@
1
+ import { IAppDEDataSet } from '../dataentity/iapp-dedata-set';
2
+ import { IAppDEField } from '../dataentity/iapp-defield';
3
+ import { IAppDataEntity } from '../dataentity/iapp-data-entity';
1
4
  import { IAppMenuItem } from '../../control/menu/iapp-menu-item';
2
5
  import { IModelObject } from '../../imodel-object';
3
6
  /**
@@ -7,12 +10,53 @@ import { IModelObject } from '../../imodel-object';
7
10
  * @interface IAppMenuModel
8
11
  */
9
12
  export interface IAppMenuModel extends IModelObject {
13
+ /**
14
+ *
15
+ * @type {IAppDEField}
16
+ * 来源 getAppFuncTagPSAppDEField
17
+ */
18
+ appFuncTagAppDEField?: IAppDEField;
19
+ /**
20
+ *
21
+ * @type {IAppDEField}
22
+ * 来源 getClsPSAppDEField
23
+ */
24
+ clsAppDEField?: IAppDEField;
10
25
  /**
11
26
  * 代码标识
12
27
  * @type {string}
13
28
  * 来源 getCodeName
14
29
  */
15
30
  codeName?: string;
31
+ /**
32
+ * @type {number}
33
+ * 来源 getDynamicMode
34
+ */
35
+ dynamicMode?: number;
36
+ /**
37
+ *
38
+ * @type {IAppDEField}
39
+ * 来源 getEnableScriptPSAppDEField
40
+ */
41
+ enableScriptAppDEField?: IAppDEField;
42
+ /**
43
+ *
44
+ * @type {IAppDEField}
45
+ * 来源 getIconClsPSAppDEField
46
+ */
47
+ iconClsAppDEField?: IAppDEField;
48
+ /**
49
+ *
50
+ * @type {IAppDEDataSet}
51
+ * 来源 getItemPSAppDEDataSet
52
+ */
53
+ itemAppDEDataSet?: IAppDEDataSet;
54
+ /**
55
+ *
56
+ * @type {IAppDataEntity}
57
+ * 来源 getItemPSAppDataEntity
58
+ */
59
+ itemAppDataEntity?: IAppDataEntity;
16
60
  /**
17
61
  * 菜单项集合
18
62
  *
@@ -20,4 +64,22 @@ export interface IAppMenuModel extends IModelObject {
20
64
  * 来源 getPSAppMenuItems
21
65
  */
22
66
  appMenuItems?: IAppMenuItem[];
67
+ /**
68
+ *
69
+ * @type {IAppDEField}
70
+ * 来源 getTextPSAppDEField
71
+ */
72
+ textAppDEField?: IAppDEField;
73
+ /**
74
+ *
75
+ * @type {IAppDEField}
76
+ * 来源 getTipsPSAppDEField
77
+ */
78
+ tipsAppDEField?: IAppDEField;
79
+ /**
80
+ *
81
+ * @type {IAppDEField}
82
+ * 来源 getVisibleScriptPSAppDEField
83
+ */
84
+ visibleScriptAppDEField?: IAppDEField;
23
85
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.85",
3
+ "version": "0.1.86",
4
4
  "license": "MIT",
5
5
  "description": "iBiz网页端模型接口",
6
6
  "author": "iBiz",
@@ -1,3 +1,6 @@
1
+ import { IAppDEDataSet } from '../dataentity/iapp-dedata-set';
2
+ import { IAppDEField } from '../dataentity/iapp-defield';
3
+ import { IAppDataEntity } from '../dataentity/iapp-data-entity';
1
4
  import { IAppMenuItem } from '../../control/menu/iapp-menu-item';
2
5
  import { IModelObject } from '../../imodel-object';
3
6
 
@@ -8,6 +11,20 @@ import { IModelObject } from '../../imodel-object';
8
11
  * @interface IAppMenuModel
9
12
  */
10
13
  export interface IAppMenuModel extends IModelObject {
14
+ /**
15
+ *
16
+ * @type {IAppDEField}
17
+ * 来源 getAppFuncTagPSAppDEField
18
+ */
19
+ appFuncTagAppDEField?: IAppDEField;
20
+
21
+ /**
22
+ *
23
+ * @type {IAppDEField}
24
+ * 来源 getClsPSAppDEField
25
+ */
26
+ clsAppDEField?: IAppDEField;
27
+
11
28
  /**
12
29
  * 代码标识
13
30
  * @type {string}
@@ -15,6 +32,40 @@ export interface IAppMenuModel extends IModelObject {
15
32
  */
16
33
  codeName?: string;
17
34
 
35
+ /**
36
+ * @type {number}
37
+ * 来源 getDynamicMode
38
+ */
39
+ dynamicMode?: number;
40
+
41
+ /**
42
+ *
43
+ * @type {IAppDEField}
44
+ * 来源 getEnableScriptPSAppDEField
45
+ */
46
+ enableScriptAppDEField?: IAppDEField;
47
+
48
+ /**
49
+ *
50
+ * @type {IAppDEField}
51
+ * 来源 getIconClsPSAppDEField
52
+ */
53
+ iconClsAppDEField?: IAppDEField;
54
+
55
+ /**
56
+ *
57
+ * @type {IAppDEDataSet}
58
+ * 来源 getItemPSAppDEDataSet
59
+ */
60
+ itemAppDEDataSet?: IAppDEDataSet;
61
+
62
+ /**
63
+ *
64
+ * @type {IAppDataEntity}
65
+ * 来源 getItemPSAppDataEntity
66
+ */
67
+ itemAppDataEntity?: IAppDataEntity;
68
+
18
69
  /**
19
70
  * 菜单项集合
20
71
  *
@@ -22,4 +73,25 @@ export interface IAppMenuModel extends IModelObject {
22
73
  * 来源 getPSAppMenuItems
23
74
  */
24
75
  appMenuItems?: IAppMenuItem[];
76
+
77
+ /**
78
+ *
79
+ * @type {IAppDEField}
80
+ * 来源 getTextPSAppDEField
81
+ */
82
+ textAppDEField?: IAppDEField;
83
+
84
+ /**
85
+ *
86
+ * @type {IAppDEField}
87
+ * 来源 getTipsPSAppDEField
88
+ */
89
+ tipsAppDEField?: IAppDEField;
90
+
91
+ /**
92
+ *
93
+ * @type {IAppDEField}
94
+ * 来源 getVisibleScriptPSAppDEField
95
+ */
96
+ visibleScriptAppDEField?: IAppDEField;
25
97
  }