@ibiz/model-core 0.1.43 → 0.1.44

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.
@@ -18,6 +18,13 @@ export interface IAppBICubeMeasure extends IModelObject {
18
18
  * 来源 getCodeName
19
19
  */
20
20
  codeName?: string;
21
+ /**
22
+ * 钻取数据展示视图
23
+ *
24
+ * @type {string}
25
+ * 来源 getDrillDownPSAppView
26
+ */
27
+ drillDownAppViewId?: string;
21
28
  /**
22
29
  * Json值格式化
23
30
  * @type {string}
@@ -12,6 +12,13 @@ export interface IAppBIReportMeasure extends IModelObject {
12
12
  * 来源 getAggMode
13
13
  */
14
14
  aggMode?: string | 'SUM' | 'AVG' | 'MAX' | 'MIN' | 'COUNT' | 'EXISTS' | 'NOTEXISTS' | 'GROUP' | 'USER' | 'USER2' | 'USER3' | 'USER4';
15
+ /**
16
+ * 钻取数据展示视图
17
+ *
18
+ * @type {string}
19
+ * 来源 getDrillDownPSAppView
20
+ */
21
+ drillDownAppViewId?: string;
15
22
  /**
16
23
  * 报表项标记
17
24
  * @type {string}
@@ -85,4 +85,10 @@ export interface ISysValueRule extends IModelObject {
85
85
  * 来源 getScriptCode
86
86
  */
87
87
  scriptCode?: string;
88
+ /**
89
+ * 唯一标记
90
+ * @type {string}
91
+ * 来源 getUniqueTag
92
+ */
93
+ uniqueTag?: string;
88
94
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.43",
3
+ "version": "0.1.44",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -34,6 +34,14 @@ export interface IAppBICubeMeasure extends IModelObject {
34
34
  */
35
35
  codeName?: string;
36
36
 
37
+ /**
38
+ * 钻取数据展示视图
39
+ *
40
+ * @type {string}
41
+ * 来源 getDrillDownPSAppView
42
+ */
43
+ drillDownAppViewId?: string;
44
+
37
45
  /**
38
46
  * Json值格式化
39
47
  * @type {string}
@@ -27,6 +27,14 @@ export interface IAppBIReportMeasure extends IModelObject {
27
27
  | 'USER3'
28
28
  | 'USER4';
29
29
 
30
+ /**
31
+ * 钻取数据展示视图
32
+ *
33
+ * @type {string}
34
+ * 来源 getDrillDownPSAppView
35
+ */
36
+ drillDownAppViewId?: string;
37
+
30
38
  /**
31
39
  * 报表项标记
32
40
  * @type {string}
@@ -98,4 +98,11 @@ export interface ISysValueRule extends IModelObject {
98
98
  * 来源 getScriptCode
99
99
  */
100
100
  scriptCode?: string;
101
+
102
+ /**
103
+ * 唯一标记
104
+ * @type {string}
105
+ * 来源 getUniqueTag
106
+ */
107
+ uniqueTag?: string;
101
108
  }