@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.
- package/out/app/bi/iapp-bicube-measure.d.ts +7 -0
- package/out/app/bi/iapp-bireport-measure.d.ts +7 -0
- package/out/valuerule/isys-value-rule.d.ts +6 -0
- package/package.json +1 -1
- package/src/app/bi/iapp-bicube-measure.ts +8 -0
- package/src/app/bi/iapp-bireport-measure.ts +8 -0
- package/src/valuerule/isys-value-rule.ts +7 -0
|
@@ -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}
|
package/package.json
CHANGED