@ibiz/model-core 0.1.29 → 0.1.30

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
  *
@@ -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
  *
@@ -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
  *
@@ -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
+ }
@@ -88,6 +88,12 @@ 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;
91
97
  /**
92
98
  * 子系统扩展
93
99
  * @description 值模式 [实体扩展模式] {0:无扩展、 2:子系统功能扩展 }
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.30",
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
  *
@@ -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
  *
@@ -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
  *
@@ -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
+ }
@@ -126,6 +126,13 @@ 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
+
129
136
  /**
130
137
  * 子系统扩展
131
138
  * @description 值模式 [实体扩展模式] {0:无扩展、 2:子系统功能扩展 }