@ibiz/model-core 0.1.26 → 0.1.28

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.
Files changed (50) hide show
  1. package/out/app/bi/iapp-bicube-dimension.d.ts +48 -0
  2. package/out/app/bi/iapp-bicube-dimension.js +1 -0
  3. package/out/app/bi/iapp-bicube-hierarchy.d.ts +35 -0
  4. package/out/app/bi/iapp-bicube-hierarchy.js +1 -0
  5. package/out/app/bi/iapp-bicube-level.d.ts +27 -0
  6. package/out/app/bi/iapp-bicube-level.js +1 -0
  7. package/out/app/bi/iapp-bicube-measure.d.ts +79 -0
  8. package/out/app/bi/iapp-bicube-measure.js +1 -0
  9. package/out/app/bi/iapp-bicube.d.ts +31 -0
  10. package/out/app/bi/iapp-bicube.js +1 -0
  11. package/out/app/bi/iapp-bireport-dimension.d.ts +15 -0
  12. package/out/app/bi/iapp-bireport-dimension.js +1 -0
  13. package/out/app/bi/iapp-bireport-measure.d.ts +15 -0
  14. package/out/app/bi/iapp-bireport-measure.js +1 -0
  15. package/out/app/bi/iapp-bireport.d.ts +64 -0
  16. package/out/app/bi/iapp-bireport.js +1 -0
  17. package/out/app/bi/iapp-bischeme.d.ts +28 -0
  18. package/out/app/bi/iapp-bischeme.js +1 -0
  19. package/out/app/dataentity/iapp-dereport.d.ts +29 -0
  20. package/out/app/iapplication.d.ts +10 -3
  21. package/out/app/theme/iapp-uitheme.d.ts +6 -0
  22. package/out/control/drctrl/idedrctrl-item.d.ts +11 -3
  23. package/out/control/form/ideform-button.d.ts +8 -0
  24. package/out/control/menu/iapp-menu-item.d.ts +7 -0
  25. package/out/control/panel/ipanel-button.d.ts +8 -0
  26. package/out/control/toolbar/idetbseperator-item.d.ts +1 -0
  27. package/out/dataentity/logic/idelogic.d.ts +9 -3
  28. package/out/dataentity/wizard/idewizard-form.d.ts +6 -0
  29. package/out/exports.d.ts +9 -0
  30. package/package.json +1 -1
  31. package/src/app/bi/iapp-bicube-dimension.ts +54 -0
  32. package/src/app/bi/iapp-bicube-hierarchy.ts +39 -0
  33. package/src/app/bi/iapp-bicube-level.ts +30 -0
  34. package/src/app/bi/iapp-bicube-measure.ts +103 -0
  35. package/src/app/bi/iapp-bicube.ts +34 -0
  36. package/src/app/bi/iapp-bireport-dimension.ts +16 -0
  37. package/src/app/bi/iapp-bireport-measure.ts +16 -0
  38. package/src/app/bi/iapp-bireport.ts +72 -0
  39. package/src/app/bi/iapp-bischeme.ts +31 -0
  40. package/src/app/dataentity/iapp-dereport.ts +33 -0
  41. package/src/app/iapplication.ts +11 -2
  42. package/src/app/theme/iapp-uitheme.ts +7 -0
  43. package/src/control/drctrl/idedrctrl-item.ts +15 -2
  44. package/src/control/form/ideform-button.ts +9 -0
  45. package/src/control/menu/iapp-menu-item.ts +8 -0
  46. package/src/control/panel/ipanel-button.ts +9 -0
  47. package/src/control/toolbar/idetbseperator-item.ts +1 -0
  48. package/src/dataentity/logic/idelogic.ts +11 -2
  49. package/src/dataentity/wizard/idewizard-form.ts +7 -0
  50. package/src/exports.ts +9 -0
@@ -0,0 +1,54 @@
1
+ import { IAppBICubeHierarchy } from './iapp-bicube-hierarchy';
2
+ import { IModelObject } from '../../imodel-object';
3
+
4
+ /**
5
+ *
6
+ * @export
7
+ * @interface IAppBICubeDimension
8
+ */
9
+ export interface IAppBICubeDimension extends IModelObject {
10
+ /**
11
+ * 代码标识
12
+ * @type {string}
13
+ * 来源 getCodeName
14
+ */
15
+ codeName?: string;
16
+
17
+ /**
18
+ * 维度标记
19
+ * @type {string}
20
+ * 来源 getDimensionTag
21
+ */
22
+ dimensionTag?: string;
23
+
24
+ /**
25
+ * 维度标记2
26
+ * @type {string}
27
+ * 来源 getDimensionTag2
28
+ */
29
+ dimensionTag2?: string;
30
+
31
+ /**
32
+ * 智能立方体维度体系集合
33
+ *
34
+ * @type {IAppBICubeHierarchy[]}
35
+ * 来源 getPSAppBICubeHierarchies
36
+ */
37
+ appBICubeHierarchies?: IAppBICubeHierarchy[];
38
+
39
+ /**
40
+ * 应用代码表对象
41
+ *
42
+ * @type {string}
43
+ * 来源 getPSAppCodeList
44
+ */
45
+ appCodeListId?: string;
46
+
47
+ /**
48
+ * 相关应用属性
49
+ *
50
+ * @type {string}
51
+ * 来源 getPSAppDEField
52
+ */
53
+ appDEFieldId?: string;
54
+ }
@@ -0,0 +1,39 @@
1
+ import { IAppBICubeLevel } from './iapp-bicube-level';
2
+ import { IModelObject } from '../../imodel-object';
3
+
4
+ /**
5
+ *
6
+ * @export
7
+ * @interface IAppBICubeHierarchy
8
+ */
9
+ export interface IAppBICubeHierarchy extends IModelObject {
10
+ /**
11
+ * 体系标记
12
+ * @type {string}
13
+ * 来源 getHierarchyTag
14
+ */
15
+ hierarchyTag?: string;
16
+
17
+ /**
18
+ * 体系标记2
19
+ * @type {string}
20
+ * 来源 getHierarchyTag2
21
+ */
22
+ hierarchyTag2?: string;
23
+
24
+ /**
25
+ * 智能立方体维度体系级别集合
26
+ *
27
+ * @type {IAppBICubeLevel[]}
28
+ * 来源 getPSAppBICubeLevels
29
+ */
30
+ appBICubeLevels?: IAppBICubeLevel[];
31
+
32
+ /**
33
+ * 相关应用实体对象
34
+ *
35
+ * @type {string}
36
+ * 来源 getPSAppDataEntity
37
+ */
38
+ appDataEntityId?: string;
39
+ }
@@ -0,0 +1,30 @@
1
+ import { IModelObject } from '../../imodel-object';
2
+
3
+ /**
4
+ *
5
+ * @export
6
+ * @interface IAppBICubeLevel
7
+ */
8
+ export interface IAppBICubeLevel extends IModelObject {
9
+ /**
10
+ * 层级标记
11
+ * @type {string}
12
+ * 来源 getLevelTag
13
+ */
14
+ levelTag?: string;
15
+
16
+ /**
17
+ * 层级标记2
18
+ * @type {string}
19
+ * 来源 getLevelTag2
20
+ */
21
+ levelTag2?: string;
22
+
23
+ /**
24
+ * 相关应用属性
25
+ *
26
+ * @type {string}
27
+ * 来源 getPSAppDEField
28
+ */
29
+ appDEFieldId?: string;
30
+ }
@@ -0,0 +1,103 @@
1
+ import { IModelObject } from '../../imodel-object';
2
+
3
+ /**
4
+ *
5
+ * @export
6
+ * @interface IAppBICubeMeasure
7
+ */
8
+ export interface IAppBICubeMeasure extends IModelObject {
9
+ /**
10
+ * 聚合模式
11
+ * @description 值模式 [数据聚合模式] {SUM:合计、 AVG:平均、 MAX:最大值、 MIN:最小值、 COUNT:计数、 EXISTS:存在、 NOTEXISTS:不存在、 GROUP:分组项、 USER:用户自定义、 USER2:用户自定义2、 USER3:用户自定义3、 USER4:用户自定义4 }
12
+ * @type {( string | 'SUM' | 'AVG' | 'MAX' | 'MIN' | 'COUNT' | 'EXISTS' | 'NOTEXISTS' | 'GROUP' | 'USER' | 'USER2' | 'USER3' | 'USER4')}
13
+ * 来源 getAggMode
14
+ */
15
+ aggMode?:
16
+ | string
17
+ | 'SUM'
18
+ | 'AVG'
19
+ | 'MAX'
20
+ | 'MIN'
21
+ | 'COUNT'
22
+ | 'EXISTS'
23
+ | 'NOTEXISTS'
24
+ | 'GROUP'
25
+ | 'USER'
26
+ | 'USER2'
27
+ | 'USER3'
28
+ | 'USER4';
29
+
30
+ /**
31
+ * 代码标识
32
+ * @type {string}
33
+ * 来源 getCodeName
34
+ */
35
+ codeName?: string;
36
+
37
+ /**
38
+ * Json值格式化
39
+ * @type {string}
40
+ * 来源 getJsonFormat
41
+ */
42
+ jsonFormat?: string;
43
+
44
+ /**
45
+ * 指标公式
46
+ * @type {string}
47
+ * 来源 getMeasureFormula
48
+ */
49
+ measureFormula?: string;
50
+
51
+ /**
52
+ * 指标组
53
+ * @type {string}
54
+ * 来源 getMeasureGroup
55
+ */
56
+ measureGroup?: string;
57
+
58
+ /**
59
+ * 指标标记
60
+ * @type {string}
61
+ * 来源 getMeasureTag
62
+ */
63
+ measureTag?: string;
64
+
65
+ /**
66
+ * 指标标记2
67
+ * @type {string}
68
+ * 来源 getMeasureTag2
69
+ */
70
+ measureTag2?: string;
71
+
72
+ /**
73
+ * 指标类型
74
+ * @description 值模式 [多维分析指标类别] {COMMON:常规、 CALCULATED:动态计算 }
75
+ * @type {( string | 'COMMON' | 'CALCULATED')}
76
+ * 来源 getMeasureType
77
+ */
78
+ measureType?: string | 'COMMON' | 'CALCULATED';
79
+
80
+ /**
81
+ * 阈值应用代码表对象
82
+ *
83
+ * @type {string}
84
+ * 来源 getPSAppCodeList
85
+ */
86
+ appCodeListId?: string;
87
+
88
+ /**
89
+ * 相关应用属性
90
+ *
91
+ * @type {string}
92
+ * 来源 getPSAppDEField
93
+ */
94
+ appDEFieldId?: string;
95
+
96
+ /**
97
+ * 隐藏指标项
98
+ * @type {boolean}
99
+ * @default false
100
+ * 来源 isHiddenItem
101
+ */
102
+ hiddenItem?: boolean;
103
+ }
@@ -0,0 +1,34 @@
1
+ import { IAppBICubeDimension } from './iapp-bicube-dimension';
2
+ import { IAppBICubeMeasure } from './iapp-bicube-measure';
3
+ import { IModelObject } from '../../imodel-object';
4
+
5
+ /**
6
+ *
7
+ * @export
8
+ * @interface IAppBICube
9
+ */
10
+ export interface IAppBICube extends IModelObject {
11
+ /**
12
+ * 智能立方体维度集合
13
+ *
14
+ * @type {IAppBICubeDimension[]}
15
+ * 来源 getPSAppBICubeDimensions
16
+ */
17
+ appBICubeDimensions?: IAppBICubeDimension[];
18
+
19
+ /**
20
+ * 智能立方体指标集合
21
+ *
22
+ * @type {IAppBICubeMeasure[]}
23
+ * 来源 getPSAppBICubeMeasures
24
+ */
25
+ appBICubeMeasures?: IAppBICubeMeasure[];
26
+
27
+ /**
28
+ * 系统智能立方体
29
+ *
30
+ * @type {string}
31
+ * 来源 getPSAppDataEntity
32
+ */
33
+ appDataEntityId?: string;
34
+ }
@@ -0,0 +1,16 @@
1
+ import { IModelObject } from '../../imodel-object';
2
+
3
+ /**
4
+ *
5
+ * @export
6
+ * @interface IAppBIReportDimension
7
+ */
8
+ export interface IAppBIReportDimension extends IModelObject {
9
+ /**
10
+ * 应用智能报表维度
11
+ *
12
+ * @type {string}
13
+ * 来源 getPSAppBIReportDimension
14
+ */
15
+ appBIReportDimensionId?: string;
16
+ }
@@ -0,0 +1,16 @@
1
+ import { IModelObject } from '../../imodel-object';
2
+
3
+ /**
4
+ *
5
+ * @export
6
+ * @interface IAppBIReportMeasure
7
+ */
8
+ export interface IAppBIReportMeasure extends IModelObject {
9
+ /**
10
+ * 应用智能报表指标
11
+ *
12
+ * @type {string}
13
+ * 来源 getPSAppBIReportMeasure
14
+ */
15
+ appBIReportMeasureId?: string;
16
+ }
@@ -0,0 +1,72 @@
1
+ import { IAppBIReportDimension } from './iapp-bireport-dimension';
2
+ import { IAppBIReportMeasure } from './iapp-bireport-measure';
3
+ import { ILayoutPanel } from '../../control/panel/ilayout-panel';
4
+ import { IModelObject } from '../../imodel-object';
5
+
6
+ /**
7
+ *
8
+ * @export
9
+ * @interface IAppBIReport
10
+ */
11
+ export interface IAppBIReport extends IModelObject {
12
+ /**
13
+ * 系统智能立方体
14
+ *
15
+ * @type {string}
16
+ * 来源 getPSAppBICube
17
+ */
18
+ appBICubeId?: string;
19
+
20
+ /**
21
+ * 智能立方体维度集合
22
+ *
23
+ * @type {IAppBIReportDimension[]}
24
+ * 来源 getPSAppBIReportDimensions
25
+ */
26
+ appBIReportDimensions?: IAppBIReportDimension[];
27
+
28
+ /**
29
+ * 智能立方体指标集合
30
+ *
31
+ * @type {IAppBIReportMeasure[]}
32
+ * 来源 getPSAppBIReportMeasures
33
+ */
34
+ appBIReportMeasures?: IAppBIReportMeasure[];
35
+
36
+ /**
37
+ * 相关应用实体
38
+ *
39
+ * @type {string}
40
+ * 来源 getPSAppDataEntity
41
+ */
42
+ appDataEntityId?: string;
43
+
44
+ /**
45
+ * 布局面板
46
+ *
47
+ * @type {ILayoutPanel}
48
+ * 来源 getPSLayoutPanel
49
+ */
50
+ layoutPanel?: ILayoutPanel;
51
+
52
+ /**
53
+ * 报表标记
54
+ * @type {string}
55
+ * 来源 getReportTag
56
+ */
57
+ reportTag?: string;
58
+
59
+ /**
60
+ * 报表标记2
61
+ * @type {string}
62
+ * 来源 getReportTag2
63
+ */
64
+ reportTag2?: string;
65
+
66
+ /**
67
+ * 报表前端模型
68
+ * @type {string}
69
+ * 来源 getReportUIModel
70
+ */
71
+ reportUIModel?: string;
72
+ }
@@ -0,0 +1,31 @@
1
+ import { IModelObject } from '../../imodel-object';
2
+
3
+ /**
4
+ *
5
+ * @export
6
+ * @interface IAppBIScheme
7
+ */
8
+ export interface IAppBIScheme extends IModelObject {
9
+ /**
10
+ * 智能立方体集合
11
+ *
12
+ * @type {string[]}
13
+ * 来源 getPSAppBICubes
14
+ */
15
+ appBICubeIds?: string[];
16
+
17
+ /**
18
+ * 智能报表集合
19
+ *
20
+ * @type {string[]}
21
+ * 来源 getPSAppBIReports
22
+ */
23
+ appBIReportIds?: string[];
24
+
25
+ /**
26
+ * 智能报表唯一标记
27
+ * @type {string}
28
+ * 来源 getUniqueTag
29
+ */
30
+ uniqueTag?: string;
31
+ }
@@ -1,4 +1,5 @@
1
1
  import { IAppDEReportItem } from './iapp-dereport-item';
2
+ import { ILayoutPanel } from '../../control/panel/ilayout-panel';
2
3
  import { IDEReport } from '../../dataentity/report/idereport';
3
4
 
4
5
  /**
@@ -7,6 +8,30 @@ import { IDEReport } from '../../dataentity/report/idereport';
7
8
  * @interface IAppDEReport
8
9
  */
9
10
  export interface IAppDEReport extends IDEReport {
11
+ /**
12
+ * 应用智能报表立方体
13
+ *
14
+ * @type {string}
15
+ * 来源 getPSAppBICube
16
+ */
17
+ appBICubeId?: string;
18
+
19
+ /**
20
+ * 应用智能报表
21
+ *
22
+ * @type {string}
23
+ * 来源 getPSAppBIReport
24
+ */
25
+ appBIReportId?: string;
26
+
27
+ /**
28
+ * 应用智能报表体系
29
+ *
30
+ * @type {string}
31
+ * 来源 getPSAppBIScheme
32
+ */
33
+ appBISchemeId?: string;
34
+
10
35
  /**
11
36
  * 应用实体数据集合
12
37
  *
@@ -46,4 +71,12 @@ export interface IAppDEReport extends IDEReport {
46
71
  * 来源 getPSAppDEReportItems
47
72
  */
48
73
  appDEReportItems?: IAppDEReportItem[];
74
+
75
+ /**
76
+ * 布局面板
77
+ *
78
+ * @type {ILayoutPanel}
79
+ * 来源 getPSLayoutPanel
80
+ */
81
+ layoutPanel?: ILayoutPanel;
49
82
  }
@@ -33,6 +33,14 @@ export interface IApplication extends IModelObject {
33
33
  */
34
34
  accessKeys?: string[];
35
35
 
36
+ /**
37
+ * 应用智能报表体系集合
38
+ *
39
+ * @type {string[]}
40
+ * 来源 getAllPSAppBISchemes
41
+ */
42
+ appBISchemeIds?: string[];
43
+
36
44
  /**
37
45
  * 应用界面行为集合
38
46
  *
@@ -186,8 +194,8 @@ export interface IApplication extends IModelObject {
186
194
 
187
195
  /**
188
196
  * 应用模式
189
- * @description 值模式 [应用模式] {DEFAULT:默认应用、 CLOUDHUBAPP:Cloud集成应用、 CLOUDHUBSUBAPP:Cloud集成子应用、 WFAPP:工作流应用、 USER:用户自定义、 USER2:用户自定义2、 USER3:用户自定义3、 USER4:用户自定义4 }
190
- * @type {( string | 'DEFAULT' | 'CLOUDHUBAPP' | 'CLOUDHUBSUBAPP' | 'WFAPP' | 'USER' | 'USER2' | 'USER3' | 'USER4')}
197
+ * @description 值模式 [应用模式] {DEFAULT:默认应用、 CLOUDHUBAPP:Cloud集成应用、 CLOUDHUBSUBAPP:Cloud集成子应用、 CLOUDHUBSUBAPP_EMBEDED:Cloud集成子应用(嵌入)、 WFAPP:工作流应用、 USER:用户自定义、 USER2:用户自定义2、 USER3:用户自定义3、 USER4:用户自定义4 }
198
+ * @type {( string | 'DEFAULT' | 'CLOUDHUBAPP' | 'CLOUDHUBSUBAPP' | 'CLOUDHUBSUBAPP_EMBEDED' | 'WFAPP' | 'USER' | 'USER2' | 'USER3' | 'USER4')}
191
199
  * 来源 getAppMode
192
200
  */
193
201
  appMode?:
@@ -195,6 +203,7 @@ export interface IApplication extends IModelObject {
195
203
  | 'DEFAULT'
196
204
  | 'CLOUDHUBAPP'
197
205
  | 'CLOUDHUBSUBAPP'
206
+ | 'CLOUDHUBSUBAPP_EMBEDED'
198
207
  | 'WFAPP'
199
208
  | 'USER'
200
209
  | 'USER2'
@@ -6,6 +6,13 @@ import { IModelObject } from '../../imodel-object';
6
6
  * @interface IAppUITheme
7
7
  */
8
8
  export interface IAppUITheme extends IModelObject {
9
+ /**
10
+ * 主题样式
11
+ * @type {string}
12
+ * 来源 getCssStyle
13
+ */
14
+ cssStyle?: string;
15
+
9
16
  /**
10
17
  * 主题说明
11
18
  * @type {string}
@@ -31,6 +31,15 @@ export interface IDEDRCtrlItem extends IControlItem, INavigateParamContainer {
31
31
  */
32
32
  counterId?: string;
33
33
 
34
+ /**
35
+ * 计数器模式
36
+ * @description 值模式 [树节点计数器类型] {0:默认、 1:0 值时隐藏 }
37
+ * @type {( number | 0 | 1)}
38
+ * @default 0
39
+ * 来源 getCounterMode
40
+ */
41
+ counterMode?: number | 0 | 1;
42
+
34
43
  /**
35
44
  * 启用判断数据访问标识
36
45
  * @type {string}
@@ -40,8 +49,8 @@ export interface IDEDRCtrlItem extends IControlItem, INavigateParamContainer {
40
49
 
41
50
  /**
42
51
  * 启用模式
43
- * @description 值模式 [关系界面组成员启用模式] {ALL:全部启用、 INWF:流程中启用、 ALLWF:全部流程状态启用、 EDIT:编辑时启用、 DEOPPRIV:实体操作标识、 CUSTOM:自定义 }
44
- * @type {( string | 'ALL' | 'INWF' | 'ALLWF' | 'EDIT' | 'DEOPPRIV' | 'CUSTOM')}
52
+ * @description 值模式 [关系界面组成员启用模式] {ALL:全部启用、 INWF:流程中启用、 ALLWF:全部流程状态启用、 EDIT:编辑时启用、 DEOPPRIV:实体操作标识、 DELOGIC:实体逻辑、 SCRIPT:脚本、 COUNT_GTE_ZERO:计数大于等于0、 COUNT_GT_ZERO:计数大于0、 CUSTOM:自定义(暂不使用) }
53
+ * @type {( string | 'ALL' | 'INWF' | 'ALLWF' | 'EDIT' | 'DEOPPRIV' | 'DELOGIC' | 'SCRIPT' | 'COUNT_GTE_ZERO' | 'COUNT_GT_ZERO' | 'CUSTOM')}
45
54
  * 来源 getEnableMode
46
55
  */
47
56
  enableMode?:
@@ -51,6 +60,10 @@ export interface IDEDRCtrlItem extends IControlItem, INavigateParamContainer {
51
60
  | 'ALLWF'
52
61
  | 'EDIT'
53
62
  | 'DEOPPRIV'
63
+ | 'DELOGIC'
64
+ | 'SCRIPT'
65
+ | 'COUNT_GTE_ZERO'
66
+ | 'COUNT_GT_ZERO'
54
67
  | 'CUSTOM';
55
68
 
56
69
  /**
@@ -1,5 +1,6 @@
1
1
  import { INavigateParamContainer } from '../inavigate-param-container';
2
2
  import { IDEFormDetail } from './ideform-detail';
3
+ import { IUIAction } from '../../view/iuiaction';
3
4
 
4
5
  /**
5
6
  *
@@ -23,6 +24,14 @@ export interface IDEFormButton extends IDEFormDetail, INavigateParamContainer {
23
24
  */
24
25
  captionItemName?: string;
25
26
 
27
+ /**
28
+ * 界面行为(运行时内联)
29
+ *
30
+ * @type {IUIAction}
31
+ * 来源 getInlinePSUIAction
32
+ */
33
+ inlineUIAction?: IUIAction;
34
+
26
35
  /**
27
36
  * 调用表单项更新
28
37
  *
@@ -155,6 +155,14 @@ export interface IAppMenuItem
155
155
  */
156
156
  openDefault?: boolean;
157
157
 
158
+ /**
159
+ * 是否延展
160
+ * @type {boolean}
161
+ * @default false
162
+ * 来源 isSpanMode
163
+ */
164
+ spanMode?: boolean;
165
+
158
166
  /**
159
167
  * 启用
160
168
  * @type {boolean}
@@ -1,5 +1,6 @@
1
1
  import { IButtonBase } from '../ibutton-base';
2
2
  import { IPanelItem } from './ipanel-item';
3
+ import { IUIAction } from '../../view/iuiaction';
3
4
 
4
5
  /**
5
6
  *
@@ -52,6 +53,14 @@ export interface IPanelButton extends IPanelItem, IButtonBase {
52
53
  */
53
54
  captionItemName?: string;
54
55
 
56
+ /**
57
+ * 界面行为(运行时内联)
58
+ *
59
+ * @type {IUIAction}
60
+ * 来源 getInlinePSUIAction
61
+ */
62
+ inlineUIAction?: IUIAction;
63
+
55
64
  /**
56
65
  * 调用界面行为
57
66
  *
@@ -10,6 +10,7 @@ export interface IDETBSeperatorItem extends IDEToolbarItem {
10
10
  /**
11
11
  * 是否延展
12
12
  * @type {boolean}
13
+ * @default false
13
14
  * 来源 isSpanMode
14
15
  */
15
16
  spanMode?: boolean;
@@ -25,6 +25,13 @@ export interface IDELogic extends IDELogicBase {
25
25
  */
26
26
  defaultParamName?: string;
27
27
 
28
+ /**
29
+ * 监控事件模型
30
+ * @type {string}
31
+ * 来源 getEventModel
32
+ */
33
+ eventModel?: string;
34
+
28
35
  /**
29
36
  * 监控事件
30
37
  * @type {string}
@@ -34,8 +41,8 @@ export interface IDELogic extends IDELogicBase {
34
41
 
35
42
  /**
36
43
  * 逻辑子类
37
- * @description 值模式 [逻辑子类] {NONE:无、 DEFIELD:属性逻辑、 ATTACHTODEACTION:附加到行为(运行时支持)、 ATTACHTODEDATASET:附加到数据集(运行时支持)、 WEBHOOK:WebHook(运行时支持)、 TIMERTASK:定时作业(运行时支持)、 EVENTHOOK:事件处理(运行时支持)、 USER:用户自定义、 USER2:用户自定义2、 USER3:用户自定义3、 USER4:用户自定义4 }
38
- * @type {( string | 'NONE' | 'DEFIELD' | 'ATTACHTODEACTION' | 'ATTACHTODEDATASET' | 'WEBHOOK' | 'TIMERTASK' | 'EVENTHOOK' | 'USER' | 'USER2' | 'USER3' | 'USER4')}
44
+ * @description 值模式 [逻辑子类] {NONE:无、 DEFIELD:属性逻辑、 DEOPPRIV:实体操作标识计算逻辑、 ATTACHTODEACTION:附加到行为(运行时支持)、 ATTACHTODEDATASET:附加到数据集(运行时支持)、 WEBHOOK:WebHook(运行时支持)、 TIMERTASK:定时作业(运行时支持)、 EVENTHOOK:事件处理(运行时支持)、 DEFIELDHOOK:属性变化处理(运行时支持)、 USER:用户自定义、 USER2:用户自定义2、 USER3:用户自定义3、 USER4:用户自定义4 }
45
+ * @type {( string | 'NONE' | 'DEFIELD' | 'DEOPPRIV' | 'ATTACHTODEACTION' | 'ATTACHTODEDATASET' | 'WEBHOOK' | 'TIMERTASK' | 'EVENTHOOK' | 'DEFIELDHOOK' | 'USER' | 'USER2' | 'USER3' | 'USER4')}
39
46
  * @default NONE
40
47
  * 来源 getLogicSubType
41
48
  */
@@ -43,11 +50,13 @@ export interface IDELogic extends IDELogicBase {
43
50
  | string
44
51
  | 'NONE'
45
52
  | 'DEFIELD'
53
+ | 'DEOPPRIV'
46
54
  | 'ATTACHTODEACTION'
47
55
  | 'ATTACHTODEDATASET'
48
56
  | 'WEBHOOK'
49
57
  | 'TIMERTASK'
50
58
  | 'EVENTHOOK'
59
+ | 'DEFIELDHOOK'
51
60
  | 'USER'
52
61
  | 'USER2'
53
62
  | 'USER3'
@@ -87,6 +87,13 @@ export interface IDEWizardForm extends IModelObject {
87
87
  */
88
88
  stepActions?: string[];
89
89
 
90
+ /**
91
+ * 向导步骤标记
92
+ * @type {string}
93
+ * 来源 getStepTag
94
+ */
95
+ stepTag?: string;
96
+
90
97
  /**
91
98
  * 首表单
92
99
  * @type {boolean}
package/src/exports.ts CHANGED
@@ -1,4 +1,13 @@
1
1
  export { IAppMenuModel } from './app/appmenu/iapp-menu-model';
2
+ export { IAppBICube } from './app/bi/iapp-bicube';
3
+ export { IAppBICubeDimension } from './app/bi/iapp-bicube-dimension';
4
+ export { IAppBICubeHierarchy } from './app/bi/iapp-bicube-hierarchy';
5
+ export { IAppBICubeLevel } from './app/bi/iapp-bicube-level';
6
+ export { IAppBICubeMeasure } from './app/bi/iapp-bicube-measure';
7
+ export { IAppBIReport } from './app/bi/iapp-bireport';
8
+ export { IAppBIReportDimension } from './app/bi/iapp-bireport-dimension';
9
+ export { IAppBIReportMeasure } from './app/bi/iapp-bireport-measure';
10
+ export { IAppBIScheme } from './app/bi/iapp-bischeme';
2
11
  export { IAppCodeList } from './app/codelist/iapp-code-list';
3
12
  export { IAppCounter } from './app/control/iapp-counter';
4
13
  export { IAppCounterRef } from './app/control/iapp-counter-ref';