@ibiz/model-core 0.1.30 → 0.1.31

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.
@@ -6,6 +6,12 @@ import { IModelObject } from '../../imodel-object';
6
6
  * @interface IAppBICubeHierarchy
7
7
  */
8
8
  export interface IAppBICubeHierarchy extends IModelObject {
9
+ /**
10
+ * 全部数据标题
11
+ * @type {string}
12
+ * 来源 getAllCaption
13
+ */
14
+ caption?: string;
9
15
  /**
10
16
  * 体系标记
11
17
  * @type {string}
@@ -32,4 +38,10 @@ export interface IAppBICubeHierarchy extends IModelObject {
32
38
  * 来源 getPSAppDataEntity
33
39
  */
34
40
  appDataEntityId?: string;
41
+ /**
42
+ * 启用全部数据
43
+ * @type {boolean}
44
+ * @default false
45
+ */
46
+ hasAll?: boolean;
35
47
  }
@@ -5,6 +5,12 @@ import { IModelObject } from '../../imodel-object';
5
5
  * @interface IAppBICubeLevel
6
6
  */
7
7
  export interface IAppBICubeLevel extends IModelObject {
8
+ /**
9
+ * 聚合标题
10
+ * @type {string}
11
+ * 来源 getAggCaption
12
+ */
13
+ aggCaption?: string;
8
14
  /**
9
15
  * 层级标记
10
16
  * @type {string}
@@ -17,6 +23,14 @@ export interface IAppBICubeLevel extends IModelObject {
17
23
  * 来源 getLevelTag2
18
24
  */
19
25
  levelTag2?: string;
26
+ /**
27
+ * 层级类型
28
+ * @description 值模式 [分析维度体系层级类型] {COMMON:常规、 TIME_YEARS:时间(年)、 TIME_HALFYEARS:时间(半年)、 TIME_QUARTERS:时间(季度)、 TIME_MONTHS:时间(月份)、 TIME_WEEKS:时间(周)、 TIME_DAYS:时间(天)、 TIME_HOURS:时间(小时)、 TIME_MINUTES:时间(分钟) }
29
+ * @type {( string | 'COMMON' | 'TIME_YEARS' | 'TIME_HALFYEARS' | 'TIME_QUARTERS' | 'TIME_MONTHS' | 'TIME_WEEKS' | 'TIME_DAYS' | 'TIME_HOURS' | 'TIME_MINUTES')}
30
+ * @default COMMON
31
+ * 来源 getLevelType
32
+ */
33
+ levelType?: string | 'COMMON' | 'TIME_YEARS' | 'TIME_HALFYEARS' | 'TIME_QUARTERS' | 'TIME_MONTHS' | 'TIME_WEEKS' | 'TIME_DAYS' | 'TIME_HOURS' | 'TIME_MINUTES';
20
34
  /**
21
35
  * 相关应用属性
22
36
  *
@@ -24,4 +38,17 @@ export interface IAppBICubeLevel extends IModelObject {
24
38
  * 来源 getPSAppDEField
25
39
  */
26
40
  appDEFieldId?: string;
41
+ /**
42
+ * 文本项标识
43
+ * @type {string}
44
+ * 来源 getTextItemName
45
+ */
46
+ textItemName?: string;
47
+ /**
48
+ * 唯一标记成员
49
+ * @type {boolean}
50
+ * @default false
51
+ * 来源 isUniqueMembers
52
+ */
53
+ uniqueMembers?: boolean;
27
54
  }
@@ -7,6 +7,12 @@ import { IModelObject } from '../../imodel-object';
7
7
  * @interface IAppBICube
8
8
  */
9
9
  export interface IAppBICube extends IModelObject {
10
+ /**
11
+ * 访问标识
12
+ * @type {string}
13
+ * 来源 getAccessKey
14
+ */
15
+ accessKey?: string;
10
16
  /**
11
17
  * 智能立方体维度集合
12
18
  *
@@ -8,6 +8,12 @@ import { IModelObject } from '../../imodel-object';
8
8
  * @interface IAppBIReport
9
9
  */
10
10
  export interface IAppBIReport extends IModelObject {
11
+ /**
12
+ * 访问标识
13
+ * @type {string}
14
+ * 来源 getAccessKey
15
+ */
16
+ accessKey?: string;
11
17
  /**
12
18
  * 系统智能立方体
13
19
  *
@@ -54,6 +54,13 @@ export interface IDEDRCtrl extends IDRCtrl {
54
54
  * 来源 getUniqueTag
55
55
  */
56
56
  uniqueTag?: string;
57
+ /**
58
+ * 支持自定义关系项
59
+ * @type {boolean}
60
+ * @default false
61
+ * 来源 isEnableCustomized
62
+ */
63
+ enableCustomized?: boolean;
57
64
  /**
58
65
  * 隐藏编辑项
59
66
  * @type {boolean}
@@ -71,6 +71,13 @@ export interface IDEEditForm extends IDEForm, ISDAjaxControl {
71
71
  * 来源 isEnableAutoSave
72
72
  */
73
73
  enableAutoSave?: boolean;
74
+ /**
75
+ * 支持自定义表单项
76
+ * @type {boolean}
77
+ * @default false
78
+ * 来源 isEnableCustomized
79
+ */
80
+ enableCustomized?: boolean;
74
81
  /**
75
82
  * 信息表单
76
83
  * @type {boolean}
@@ -43,6 +43,12 @@ export interface IPanelField extends IPanelItem, IEditorContainer {
43
43
  * 来源 getPSSysImage
44
44
  */
45
45
  sysImage?: ISysImage;
46
+ /**
47
+ * 重置项名称集合
48
+ *
49
+ * 来源 getResetItemNames
50
+ */
51
+ resetItemNames?: string[];
46
52
  /**
47
53
  * 值格式化
48
54
  * @type {string}
@@ -116,6 +116,13 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
116
116
  * 来源 getRemovePSDEOPPriv
117
117
  */
118
118
  removeDEOPPrivId?: string;
119
+ /**
120
+ * 图形样式应用实体属性
121
+ *
122
+ * @type {string}
123
+ * 来源 getShapeClsPSAppDEField
124
+ */
125
+ shapeClsAppDEFieldId?: string;
119
126
  /**
120
127
  * 节点排序方向
121
128
  * @description 值模式 [树节点字段排序方向] {ASC:升序、 DESC:降序 }
@@ -153,6 +153,19 @@ export interface IDETreeNode extends IControlItem, IControlXDataContainer, ICont
153
153
  * 来源 getPSSysPFPlugin
154
154
  */
155
155
  sysPFPluginId?: string;
156
+ /**
157
+ * 图形动态样式表
158
+ * @type {string}
159
+ * 来源 getShapeDynaClass
160
+ */
161
+ shapeDynaClass?: string;
162
+ /**
163
+ * 图形界面样式表
164
+ *
165
+ * @type {ISysCss}
166
+ * 来源 getShapePSSysCss
167
+ */
168
+ shapeSysCss?: ISysCss;
156
169
  /**
157
170
  * 节点类型
158
171
  * @description 值模式 [云树视图节点类型] {STATIC:静态、 DE:动态(实体)、 CODELIST:动态(代码表) }
@@ -88,12 +88,6 @@ export interface IDEAction extends IModelObject {
88
88
  * 来源 getCodeName
89
89
  */
90
90
  codeName?: string;
91
- /**
92
- * 数据访问标识
93
- * @type {string}
94
- * 来源 getDataAccessAction
95
- */
96
- dataAccessAction?: string;
97
91
  /**
98
92
  * 子系统扩展
99
93
  * @description 值模式 [实体扩展模式] {0:无扩展、 2:子系统功能扩展 }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -7,6 +7,13 @@ import { IModelObject } from '../../imodel-object';
7
7
  * @interface IAppBICubeHierarchy
8
8
  */
9
9
  export interface IAppBICubeHierarchy extends IModelObject {
10
+ /**
11
+ * 全部数据标题
12
+ * @type {string}
13
+ * 来源 getAllCaption
14
+ */
15
+ caption?: string;
16
+
10
17
  /**
11
18
  * 体系标记
12
19
  * @type {string}
@@ -36,4 +43,11 @@ export interface IAppBICubeHierarchy extends IModelObject {
36
43
  * 来源 getPSAppDataEntity
37
44
  */
38
45
  appDataEntityId?: string;
46
+
47
+ /**
48
+ * 启用全部数据
49
+ * @type {boolean}
50
+ * @default false
51
+ */
52
+ hasAll?: boolean;
39
53
  }
@@ -6,6 +6,13 @@ import { IModelObject } from '../../imodel-object';
6
6
  * @interface IAppBICubeLevel
7
7
  */
8
8
  export interface IAppBICubeLevel extends IModelObject {
9
+ /**
10
+ * 聚合标题
11
+ * @type {string}
12
+ * 来源 getAggCaption
13
+ */
14
+ aggCaption?: string;
15
+
9
16
  /**
10
17
  * 层级标记
11
18
  * @type {string}
@@ -20,6 +27,25 @@ export interface IAppBICubeLevel extends IModelObject {
20
27
  */
21
28
  levelTag2?: string;
22
29
 
30
+ /**
31
+ * 层级类型
32
+ * @description 值模式 [分析维度体系层级类型] {COMMON:常规、 TIME_YEARS:时间(年)、 TIME_HALFYEARS:时间(半年)、 TIME_QUARTERS:时间(季度)、 TIME_MONTHS:时间(月份)、 TIME_WEEKS:时间(周)、 TIME_DAYS:时间(天)、 TIME_HOURS:时间(小时)、 TIME_MINUTES:时间(分钟) }
33
+ * @type {( string | 'COMMON' | 'TIME_YEARS' | 'TIME_HALFYEARS' | 'TIME_QUARTERS' | 'TIME_MONTHS' | 'TIME_WEEKS' | 'TIME_DAYS' | 'TIME_HOURS' | 'TIME_MINUTES')}
34
+ * @default COMMON
35
+ * 来源 getLevelType
36
+ */
37
+ levelType?:
38
+ | string
39
+ | 'COMMON'
40
+ | 'TIME_YEARS'
41
+ | 'TIME_HALFYEARS'
42
+ | 'TIME_QUARTERS'
43
+ | 'TIME_MONTHS'
44
+ | 'TIME_WEEKS'
45
+ | 'TIME_DAYS'
46
+ | 'TIME_HOURS'
47
+ | 'TIME_MINUTES';
48
+
23
49
  /**
24
50
  * 相关应用属性
25
51
  *
@@ -27,4 +53,19 @@ export interface IAppBICubeLevel extends IModelObject {
27
53
  * 来源 getPSAppDEField
28
54
  */
29
55
  appDEFieldId?: string;
56
+
57
+ /**
58
+ * 文本项标识
59
+ * @type {string}
60
+ * 来源 getTextItemName
61
+ */
62
+ textItemName?: string;
63
+
64
+ /**
65
+ * 唯一标记成员
66
+ * @type {boolean}
67
+ * @default false
68
+ * 来源 isUniqueMembers
69
+ */
70
+ uniqueMembers?: boolean;
30
71
  }
@@ -8,6 +8,13 @@ import { IModelObject } from '../../imodel-object';
8
8
  * @interface IAppBICube
9
9
  */
10
10
  export interface IAppBICube extends IModelObject {
11
+ /**
12
+ * 访问标识
13
+ * @type {string}
14
+ * 来源 getAccessKey
15
+ */
16
+ accessKey?: string;
17
+
11
18
  /**
12
19
  * 智能立方体维度集合
13
20
  *
@@ -9,6 +9,13 @@ import { IModelObject } from '../../imodel-object';
9
9
  * @interface IAppBIReport
10
10
  */
11
11
  export interface IAppBIReport extends IModelObject {
12
+ /**
13
+ * 访问标识
14
+ * @type {string}
15
+ * 来源 getAccessKey
16
+ */
17
+ accessKey?: string;
18
+
12
19
  /**
13
20
  * 系统智能立方体
14
21
  *
@@ -62,6 +62,14 @@ export interface IDEDRCtrl extends IDRCtrl {
62
62
  */
63
63
  uniqueTag?: string;
64
64
 
65
+ /**
66
+ * 支持自定义关系项
67
+ * @type {boolean}
68
+ * @default false
69
+ * 来源 isEnableCustomized
70
+ */
71
+ enableCustomized?: boolean;
72
+
65
73
  /**
66
74
  * 隐藏编辑项
67
75
  * @type {boolean}
@@ -81,6 +81,14 @@ export interface IDEEditForm extends IDEForm, ISDAjaxControl {
81
81
  */
82
82
  enableAutoSave?: boolean;
83
83
 
84
+ /**
85
+ * 支持自定义表单项
86
+ * @type {boolean}
87
+ * @default false
88
+ * 来源 isEnableCustomized
89
+ */
90
+ enableCustomized?: boolean;
91
+
84
92
  /**
85
93
  * 信息表单
86
94
  * @type {boolean}
@@ -49,6 +49,13 @@ export interface IPanelField extends IPanelItem, IEditorContainer {
49
49
  */
50
50
  sysImage?: ISysImage;
51
51
 
52
+ /**
53
+ * 重置项名称集合
54
+ *
55
+ * 来源 getResetItemNames
56
+ */
57
+ resetItemNames?: string[];
58
+
52
59
  /**
53
60
  * 值格式化
54
61
  * @type {string}
@@ -133,6 +133,14 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
133
133
  */
134
134
  removeDEOPPrivId?: string;
135
135
 
136
+ /**
137
+ * 图形样式应用实体属性
138
+ *
139
+ * @type {string}
140
+ * 来源 getShapeClsPSAppDEField
141
+ */
142
+ shapeClsAppDEFieldId?: string;
143
+
136
144
  /**
137
145
  * 节点排序方向
138
146
  * @description 值模式 [树节点字段排序方向] {ASC:升序、 DESC:降序 }
@@ -178,6 +178,21 @@ export interface IDETreeNode
178
178
  */
179
179
  sysPFPluginId?: string;
180
180
 
181
+ /**
182
+ * 图形动态样式表
183
+ * @type {string}
184
+ * 来源 getShapeDynaClass
185
+ */
186
+ shapeDynaClass?: string;
187
+
188
+ /**
189
+ * 图形界面样式表
190
+ *
191
+ * @type {ISysCss}
192
+ * 来源 getShapePSSysCss
193
+ */
194
+ shapeSysCss?: ISysCss;
195
+
181
196
  /**
182
197
  * 节点类型
183
198
  * @description 值模式 [云树视图节点类型] {STATIC:静态、 DE:动态(实体)、 CODELIST:动态(代码表) }
@@ -126,13 +126,6 @@ export interface IDEAction extends IModelObject {
126
126
  */
127
127
  codeName?: string;
128
128
 
129
- /**
130
- * 数据访问标识
131
- * @type {string}
132
- * 来源 getDataAccessAction
133
- */
134
- dataAccessAction?: string;
135
-
136
129
  /**
137
130
  * 子系统扩展
138
131
  * @description 值模式 [实体扩展模式] {0:无扩展、 2:子系统功能扩展 }