@ibiz/model-core 0.1.29 → 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.
@@ -12,6 +12,12 @@ export interface IAppBICubeDimension extends IModelObject {
12
12
  * 来源 getCodeName
13
13
  */
14
14
  codeName?: string;
15
+ /**
16
+ * 维度公式
17
+ * @type {string}
18
+ * 来源 getDimensionFormula
19
+ */
20
+ dimensionFormula?: string;
15
21
  /**
16
22
  * 维度标记
17
23
  * @type {string}
@@ -24,6 +30,13 @@ export interface IAppBICubeDimension extends IModelObject {
24
30
  * 来源 getDimensionTag2
25
31
  */
26
32
  dimensionTag2?: string;
33
+ /**
34
+ * 维度类型
35
+ * @description 值模式 [多维分析维度类别] {COMMON:常规、 CALCULATED:动态计算 }
36
+ * @type {( string | 'COMMON' | 'CALCULATED')}
37
+ * 来源 getDimensionType
38
+ */
39
+ dimensionType?: string | 'COMMON' | 'CALCULATED';
27
40
  /**
28
41
  * 智能立方体维度体系集合
29
42
  *
@@ -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
  *
@@ -142,6 +142,12 @@ export interface IAppDataEntity extends IModelObject {
142
142
  * 来源 getDEAPITag
143
143
  */
144
144
  deapitag?: string;
145
+ /**
146
+ * 实体代码标识
147
+ * @type {string}
148
+ * 来源 getDECodeName
149
+ */
150
+ decodeName?: string;
145
151
  /**
146
152
  * 属性组使用模式
147
153
  * @description 值模式 [实体服务接口属性组联合模式] {REPLACE:替换实体属性、 OVERWRITE:重定义实体属性、 EXCLUDE:排除属性组属性 }
@@ -149,6 +155,12 @@ export interface IAppDataEntity extends IModelObject {
149
155
  * 来源 getDEFGroupMode
150
156
  */
151
157
  defgroupMode?: string | 'REPLACE' | 'OVERWRITE' | 'EXCLUDE';
158
+ /**
159
+ * 实体标识
160
+ * @type {string}
161
+ * 来源 getDEName
162
+ */
163
+ dename?: string;
152
164
  /**
153
165
  * 实体访问控制体系
154
166
  * @description 值模式 [系统权限控制体系] {1:运行子系统角色体系(默认)、 2:当前系统角色及实体角色 }
@@ -8,6 +8,12 @@ import { ISysImage } from '../../res/isys-image';
8
8
  * @interface IDEDRCtrl
9
9
  */
10
10
  export interface IDEDRCtrl extends IDRCtrl {
11
+ /**
12
+ * 实体数据关系标记
13
+ * @type {string}
14
+ * 来源 getDataRelationTag
15
+ */
16
+ dataRelationTag?: string;
11
17
  /**
12
18
  * 编辑项标题语言资源
13
19
  *
@@ -48,6 +54,13 @@ export interface IDEDRCtrl extends IDRCtrl {
48
54
  * 来源 getUniqueTag
49
55
  */
50
56
  uniqueTag?: string;
57
+ /**
58
+ * 支持自定义关系项
59
+ * @type {boolean}
60
+ * @default false
61
+ * 来源 isEnableCustomized
62
+ */
63
+ enableCustomized?: boolean;
51
64
  /**
52
65
  * 隐藏编辑项
53
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}
@@ -49,6 +49,13 @@ export interface IMDControl extends IControl {
49
49
  * 来源 getGetPSControlAction
50
50
  */
51
51
  getControlAction?: IControlAction;
52
+ /**
53
+ * 移动数据行为
54
+ *
55
+ * @type {IControlAction}
56
+ * 来源 getMovePSControlAction
57
+ */
58
+ moveControlAction?: IControlAction;
52
59
  /**
53
60
  * 部件导航上下文集合
54
61
  *
@@ -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}
@@ -5,4 +5,17 @@ import { IRawItemBase } from '../iraw-item-base';
5
5
  * @export
6
6
  * @interface IPlaceholderItem
7
7
  */
8
- export type IPlaceholderItem = IRawItemBase;
8
+ export interface IPlaceholderItem extends IRawItemBase {
9
+ /**
10
+ * 标题
11
+ * @type {string}
12
+ * 来源 getCaption
13
+ */
14
+ caption?: string;
15
+ /**
16
+ * 内容
17
+ * @type {string}
18
+ * 来源 getContent
19
+ */
20
+ content?: string;
21
+ }
@@ -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:动态(代码表) }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.29",
3
+ "version": "0.1.31",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -14,6 +14,13 @@ export interface IAppBICubeDimension extends IModelObject {
14
14
  */
15
15
  codeName?: string;
16
16
 
17
+ /**
18
+ * 维度公式
19
+ * @type {string}
20
+ * 来源 getDimensionFormula
21
+ */
22
+ dimensionFormula?: string;
23
+
17
24
  /**
18
25
  * 维度标记
19
26
  * @type {string}
@@ -28,6 +35,14 @@ export interface IAppBICubeDimension extends IModelObject {
28
35
  */
29
36
  dimensionTag2?: string;
30
37
 
38
+ /**
39
+ * 维度类型
40
+ * @description 值模式 [多维分析维度类别] {COMMON:常规、 CALCULATED:动态计算 }
41
+ * @type {( string | 'COMMON' | 'CALCULATED')}
42
+ * 来源 getDimensionType
43
+ */
44
+ dimensionType?: string | 'COMMON' | 'CALCULATED';
45
+
31
46
  /**
32
47
  * 智能立方体维度体系集合
33
48
  *
@@ -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
  *
@@ -161,6 +161,13 @@ export interface IAppDataEntity extends IModelObject {
161
161
  */
162
162
  deapitag?: string;
163
163
 
164
+ /**
165
+ * 实体代码标识
166
+ * @type {string}
167
+ * 来源 getDECodeName
168
+ */
169
+ decodeName?: string;
170
+
164
171
  /**
165
172
  * 属性组使用模式
166
173
  * @description 值模式 [实体服务接口属性组联合模式] {REPLACE:替换实体属性、 OVERWRITE:重定义实体属性、 EXCLUDE:排除属性组属性 }
@@ -169,6 +176,13 @@ export interface IAppDataEntity extends IModelObject {
169
176
  */
170
177
  defgroupMode?: string | 'REPLACE' | 'OVERWRITE' | 'EXCLUDE';
171
178
 
179
+ /**
180
+ * 实体标识
181
+ * @type {string}
182
+ * 来源 getDEName
183
+ */
184
+ dename?: string;
185
+
172
186
  /**
173
187
  * 实体访问控制体系
174
188
  * @description 值模式 [系统权限控制体系] {1:运行子系统角色体系(默认)、 2:当前系统角色及实体角色 }
@@ -9,6 +9,13 @@ import { ISysImage } from '../../res/isys-image';
9
9
  * @interface IDEDRCtrl
10
10
  */
11
11
  export interface IDEDRCtrl extends IDRCtrl {
12
+ /**
13
+ * 实体数据关系标记
14
+ * @type {string}
15
+ * 来源 getDataRelationTag
16
+ */
17
+ dataRelationTag?: string;
18
+
12
19
  /**
13
20
  * 编辑项标题语言资源
14
21
  *
@@ -55,6 +62,14 @@ export interface IDEDRCtrl extends IDRCtrl {
55
62
  */
56
63
  uniqueTag?: string;
57
64
 
65
+ /**
66
+ * 支持自定义关系项
67
+ * @type {boolean}
68
+ * @default false
69
+ * 来源 isEnableCustomized
70
+ */
71
+ enableCustomized?: boolean;
72
+
58
73
  /**
59
74
  * 隐藏编辑项
60
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}
@@ -56,6 +56,14 @@ export interface IMDControl extends IControl {
56
56
  */
57
57
  getControlAction?: IControlAction;
58
58
 
59
+ /**
60
+ * 移动数据行为
61
+ *
62
+ * @type {IControlAction}
63
+ * 来源 getMovePSControlAction
64
+ */
65
+ moveControlAction?: IControlAction;
66
+
59
67
  /**
60
68
  * 部件导航上下文集合
61
69
  *
@@ -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}
@@ -6,4 +6,18 @@ import { IRawItemBase } from '../iraw-item-base';
6
6
  * @export
7
7
  * @interface IPlaceholderItem
8
8
  */
9
- export type IPlaceholderItem = IRawItemBase;
9
+ export interface IPlaceholderItem extends IRawItemBase {
10
+ /**
11
+ * 标题
12
+ * @type {string}
13
+ * 来源 getCaption
14
+ */
15
+ caption?: string;
16
+
17
+ /**
18
+ * 内容
19
+ * @type {string}
20
+ * 来源 getContent
21
+ */
22
+ content?: string;
23
+ }
@@ -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:动态(代码表) }