@ibiz/model-core 0.0.20 → 0.0.22

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 (33) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/out/app/iapplication.d.ts +2 -0
  3. package/out/app/res/iapp-sub-view-type-ref.d.ts +67 -0
  4. package/out/app/res/iapp-sub-view-type-ref.js +1 -0
  5. package/out/app/theme/iapp-uitheme.d.ts +6 -0
  6. package/out/control/calendar/icalendar-item.d.ts +6 -0
  7. package/out/control/map/imap-item.d.ts +19 -0
  8. package/out/control/map/isys-map-item.d.ts +14 -0
  9. package/out/dataentity/action/ideaction.d.ts +0 -7
  10. package/out/dataentity/dataexport/idedata-export.d.ts +19 -7
  11. package/out/dataentity/dataimport/idedata-import.d.ts +17 -5
  12. package/out/dataentity/der/iderbase.d.ts +12 -0
  13. package/out/dataentity/print/ideprint.d.ts +24 -5
  14. package/out/dataentity/report/idereport.d.ts +27 -8
  15. package/out/exports.d.ts +1 -0
  16. package/out/res/isub-view-type.d.ts +6 -0
  17. package/out/res/isys-pfplugin.d.ts +6 -0
  18. package/package.json +1 -1
  19. package/src/app/iapplication.ts +3 -0
  20. package/src/app/res/iapp-sub-view-type-ref.ts +76 -0
  21. package/src/app/theme/iapp-uitheme.ts +7 -0
  22. package/src/control/calendar/icalendar-item.ts +7 -0
  23. package/src/control/map/imap-item.ts +22 -0
  24. package/src/control/map/isys-map-item.ts +16 -0
  25. package/src/dataentity/action/ideaction.ts +0 -8
  26. package/src/dataentity/dataexport/idedata-export.ts +22 -8
  27. package/src/dataentity/dataimport/idedata-import.ts +19 -5
  28. package/src/dataentity/der/iderbase.ts +14 -0
  29. package/src/dataentity/print/ideprint.ts +40 -5
  30. package/src/dataentity/report/idereport.ts +43 -8
  31. package/src/exports.ts +1 -0
  32. package/src/res/isub-view-type.ts +7 -0
  33. package/src/res/isys-pfplugin.ts +7 -0
package/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.0.22] - 2023-11-30
11
+
12
+ ### Added
13
+
14
+ - 实体打印和报表支持插件 sysPFPluginId
15
+ - 应用补充 appSubViewTypeRefs
16
+
10
17
  ## [0.0.20] - 2023-10-31
11
18
 
12
19
  ### Added
@@ -16,6 +16,7 @@ import { IAppViewMsgGroup } from './view/iapp-view-msg-group';
16
16
  import { IAppWF } from './wf/iapp-wf';
17
17
  import { IDEOPPriv } from '../dataentity/priv/ideoppriv';
18
18
  import { IModelObject } from '../imodel-object';
19
+ import { IAppSubViewTypeRef } from '../exports';
19
20
  /**
20
21
  *
21
22
  * @export
@@ -126,6 +127,7 @@ export interface IApplication extends IModelObject {
126
127
  * 来源 getAllPSAppViewMsgs
127
128
  */
128
129
  appViewMsgs?: IAppViewMsg[];
130
+ appSubViewTypeRefs?: IAppSubViewTypeRef[];
129
131
  /**
130
132
  * 应用工作流集合
131
133
  *
@@ -0,0 +1,67 @@
1
+ import { IViewLayoutPanel } from '../../control/panel/iview-layout-panel';
2
+ import { IModelObject } from '../../imodel-object';
3
+ /**
4
+ *
5
+ * @export
6
+ * @interface IAppSubViewTypeRef
7
+ */
8
+ export interface IAppSubViewTypeRef extends IModelObject {
9
+ /**
10
+ * 前端模板插件
11
+ *
12
+ * @type {string}
13
+ * 来源 getPSSysPFPlugin
14
+ */
15
+ sysPFPluginId?: string;
16
+ /**
17
+ * 视图布局面板
18
+ *
19
+ * @type {IViewLayoutPanel}
20
+ * 来源 getPSViewLayoutPanel
21
+ */
22
+ viewLayoutPanel?: IViewLayoutPanel;
23
+ /**
24
+ * 插件代码
25
+ * @type {string}
26
+ * 来源 getPluginCode
27
+ */
28
+ pluginCode?: string;
29
+ /**
30
+ * 引用标记
31
+ * @type {string}
32
+ * 来源 getRefTag
33
+ */
34
+ refTag?: string;
35
+ /**
36
+ * 类型代码
37
+ * @type {string}
38
+ * 来源 getTypeCode
39
+ */
40
+ typeCode?: string;
41
+ /**
42
+ * 视图模型
43
+ * @type {IModel}
44
+ * 来源 getViewModel
45
+ */
46
+ viewModel?: IModel;
47
+ /**
48
+ * 标准视图类型
49
+ * @type {string}
50
+ * 来源 getViewType
51
+ */
52
+ viewType?: string;
53
+ /**
54
+ * 仅扩展界面样式
55
+ * @type {boolean}
56
+ * @default false
57
+ * 来源 isExtendStyleOnly
58
+ */
59
+ extendStyleOnly?: boolean;
60
+ /**
61
+ * 全局默认替换
62
+ * @type {boolean}
63
+ * @default false
64
+ * 来源 isReplaceDefault
65
+ */
66
+ replaceDefault?: boolean;
67
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -11,6 +11,12 @@ export interface IAppUITheme extends IModelObject {
11
11
  * 来源 getThemeDesc
12
12
  */
13
13
  themeDesc?: string;
14
+ /**
15
+ * 主题参数集合
16
+ * @type {IModel}
17
+ * 来源 getThemeParams
18
+ */
19
+ themeParams?: IModel;
14
20
  /**
15
21
  * 主题标记
16
22
  * @type {string}
@@ -25,6 +25,12 @@ export interface ICalendarItem extends IControlItem, IControlXDataContainer, ICo
25
25
  * 来源 getColor
26
26
  */
27
27
  color?: string;
28
+ /**
29
+ * 动态样式表
30
+ * @type {string}
31
+ * 来源 getDynaClass
32
+ */
33
+ dynaClass?: string;
28
34
  /**
29
35
  * 项内置样式
30
36
  * @description 值模式 [部件成员样式] {DEFAULT:默认样式、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
@@ -36,6 +36,12 @@ export interface IMapItem extends IControlItem, IControlXDataContainer, IControl
36
36
  * 来源 getColor
37
37
  */
38
38
  color?: string;
39
+ /**
40
+ * 动态样式表
41
+ * @type {string}
42
+ * 来源 getDynaClass
43
+ */
44
+ dynaClass?: string;
39
45
  /**
40
46
  * 项样式
41
47
  * @description 值模式 [地图项样式] {POINT:点、 POINT2:点2、 POINT3:点3、 POINT4:点4、 LINE:连线、 LINE2:连线2、 LINE3:连线3、 LINE4:连线4、 REGION:区域、 REGION2:区域2、 REGION3:区域3、 REGION4:区域4、 USER:用户自定义、 USER2:用户自定义2、 USER3:用户自定义3、 USER4:用户自定义4 }
@@ -102,4 +108,17 @@ export interface IMapItem extends IControlItem, IControlXDataContainer, IControl
102
108
  * 来源 getRadius
103
109
  */
104
110
  radius?: number;
111
+ /**
112
+ * 图形动态样式表
113
+ * @type {string}
114
+ * 来源 getShapeDynaClass
115
+ */
116
+ shapeDynaClass?: string;
117
+ /**
118
+ * 图形界面样式表
119
+ *
120
+ * @type {ISysCss}
121
+ * 来源 getShapePSSysCss
122
+ */
123
+ shapeSysCss?: ISysCss;
105
124
  }
@@ -124,6 +124,13 @@ export interface ISysMapItem extends IMapItem, IControlMDObject {
124
124
  * 来源 getRemovePSDEOPPriv
125
125
  */
126
126
  removeDEOPPrivId?: string;
127
+ /**
128
+ * 图形样式应用实体属性
129
+ *
130
+ * @type {string}
131
+ * 来源 getShapeClsPSAppDEField
132
+ */
133
+ shapeClsAppDEFieldId?: string;
127
134
  /**
128
135
  * 标记值2应用实体属性
129
136
  *
@@ -145,6 +152,13 @@ export interface ISysMapItem extends IMapItem, IControlMDObject {
145
152
  * 来源 getTextPSAppDEField
146
153
  */
147
154
  textAppDEFieldId?: string;
155
+ /**
156
+ * 时间应用实体属性
157
+ *
158
+ * @type {string}
159
+ * 来源 getTimePSAppDEField
160
+ */
161
+ timeAppDEFieldId?: string;
148
162
  /**
149
163
  * 提示应用实体属性
150
164
  *
@@ -109,13 +109,6 @@ export interface IDEAction extends IModelObject {
109
109
  * 来源 getOrderValue
110
110
  */
111
111
  orderValue?: number;
112
- /**
113
- * 性能优化预警时长(ms)
114
- * @type {number}
115
- * @default -1
116
- * 来源 getPOTime
117
- */
118
- potime?: number;
119
112
  /**
120
113
  * 前端扩展插件
121
114
  *
@@ -12,19 +12,24 @@ export interface IDEDataExport extends IModelObject {
12
12
  * 来源 getCodeName
13
13
  */
14
14
  codeName?: string;
15
+ /**
16
+ * 导入标记
17
+ * @type {string}
18
+ * 来源 getExpTag
19
+ */
20
+ expTag?: string;
21
+ /**
22
+ * 导入标记2
23
+ * @type {string}
24
+ * 来源 getExpTag2
25
+ */
26
+ expTag2?: string;
15
27
  /**
16
28
  * 最大记录数
17
29
  * @type {number}
18
30
  * 来源 getMaxRowCount
19
31
  */
20
32
  maxRowCount?: number;
21
- /**
22
- * 性能优化预警时长(ms)
23
- * @type {number}
24
- * @default -1
25
- * 来源 getPOTime
26
- */
27
- potime?: number;
28
33
  /**
29
34
  * 导出项集合
30
35
  *
@@ -46,4 +51,11 @@ export interface IDEDataExport extends IModelObject {
46
51
  * 来源 isDefaultMode
47
52
  */
48
53
  defaultMode?: boolean;
54
+ /**
55
+ * 支持自定义
56
+ * @type {boolean}
57
+ * @default false
58
+ * 来源 isEnableCustomized
59
+ */
60
+ enableCustomized?: boolean;
49
61
  }
@@ -25,12 +25,17 @@ export interface IDEDataImport extends IModelObject {
25
25
  */
26
26
  createDataAccessAction?: string;
27
27
  /**
28
- * 性能优化预警时长(ms)
29
- * @type {number}
30
- * @default -1
31
- * 来源 getPOTime
28
+ * 导入标记
29
+ * @type {string}
30
+ * 来源 getImpTag
31
+ */
32
+ impTag?: string;
33
+ /**
34
+ * 导入标记2
35
+ * @type {string}
36
+ * 来源 getImpTag2
32
37
  */
33
- potime?: number;
38
+ impTag2?: string;
34
39
  /**
35
40
  * 导入项集合
36
41
  *
@@ -58,6 +63,13 @@ export interface IDEDataImport extends IModelObject {
58
63
  * 来源 isDefaultMode
59
64
  */
60
65
  defaultMode?: boolean;
66
+ /**
67
+ * 支持自定义
68
+ * @type {boolean}
69
+ * @default false
70
+ * 来源 isEnableCustomized
71
+ */
72
+ enableCustomized?: boolean;
61
73
  /**
62
74
  * 忽略导入错误
63
75
  * @type {boolean}
@@ -12,6 +12,18 @@ export interface IDERBase extends IModelObject {
12
12
  * 来源 getCodeName
13
13
  */
14
14
  codeName?: string;
15
+ /**
16
+ * 关系标记
17
+ * @type {string}
18
+ * 来源 getDERTag
19
+ */
20
+ dertag?: string;
21
+ /**
22
+ * 关系标记2
23
+ * @type {string}
24
+ * 来源 getDERTag2
25
+ */
26
+ dertag2?: string;
15
27
  /**
16
28
  * 关系类型
17
29
  * @description 值模式 [实体关系类型] {DER1N:1:N关系、 DERINHERIT:继承关系、 DERINDEX:索引关系、 DER11:1:1 关系、 DERMULINH:多继承关系(虚拟实体)、 DERCUSTOM:自定义关系、 DERAGGDATA:聚合数据关系 }
@@ -11,6 +11,13 @@ export interface IDEPrint extends IModelObject {
11
11
  * 来源 getCodeName
12
12
  */
13
13
  codeName?: string;
14
+ /**
15
+ * 内容类型
16
+ * @description 值模式 [实体报表内容格式] {PDF:PDF、 HTML:HTML、 DOCX:DOCX、 XLSX:XLSX、 JSON:JSON、 XML:XML、 TEXT:TEXT、 MARKDOWN:MARKDOWN、 WORD:WORD(过期)、 EXCEL:EXCEL(过期)、 USER:用户自定义、 USER2:用户自定义2 }
17
+ * @type {( string | 'PDF' | 'HTML' | 'DOCX' | 'XLSX' | 'JSON' | 'XML' | 'TEXT' | 'MARKDOWN' | 'WORD' | 'EXCEL' | 'USER' | 'USER2')}
18
+ * 来源 getContentType
19
+ */
20
+ contentType?: string | 'PDF' | 'HTML' | 'DOCX' | 'XLSX' | 'JSON' | 'XML' | 'TEXT' | 'MARKDOWN' | 'WORD' | 'EXCEL' | 'USER' | 'USER2';
14
21
  /**
15
22
  * 数据访问标识
16
23
  * @type {string}
@@ -18,12 +25,24 @@ export interface IDEPrint extends IModelObject {
18
25
  */
19
26
  dataAccessAction?: string;
20
27
  /**
21
- * 性能优化预警时长(ms)
22
- * @type {number}
23
- * @default -1
24
- * 来源 getPOTime
28
+ * 前端扩展插件
29
+ *
30
+ * @type {string}
31
+ * 来源 getPSSysPFPlugin
32
+ */
33
+ sysPFPluginId?: string;
34
+ /**
35
+ * 打印标记
36
+ * @type {string}
37
+ * 来源 getPrintTag
38
+ */
39
+ printTag?: string;
40
+ /**
41
+ * 打印标记2
42
+ * @type {string}
43
+ * 来源 getPrintTag2
25
44
  */
26
- potime?: number;
45
+ printTag2?: string;
27
46
  /**
28
47
  * 报表类型
29
48
  * @type {string}
@@ -12,24 +12,43 @@ export interface IDEReport extends IModelObject {
12
12
  */
13
13
  codeName?: string;
14
14
  /**
15
- * 性能优化预警时长(ms)
16
- * @type {number}
17
- * @default -1
18
- * 来源 getPOTime
15
+ * 内容类型
16
+ * @description 值模式 [实体报表内容格式] {PDF:PDF、 HTML:HTML、 DOCX:DOCX、 XLSX:XLSX、 JSON:JSON、 XML:XML、 TEXT:TEXT、 MARKDOWN:MARKDOWN、 WORD:WORD(过期)、 EXCEL:EXCEL(过期)、 USER:用户自定义、 USER2:用户自定义2 }
17
+ * @type {( string | 'PDF' | 'HTML' | 'DOCX' | 'XLSX' | 'JSON' | 'XML' | 'TEXT' | 'MARKDOWN' | 'WORD' | 'EXCEL' | 'USER' | 'USER2')}
18
+ * 来源 getContentType
19
19
  */
20
- potime?: number;
20
+ contentType?: string | 'PDF' | 'HTML' | 'DOCX' | 'XLSX' | 'JSON' | 'XML' | 'TEXT' | 'MARKDOWN' | 'WORD' | 'EXCEL' | 'USER' | 'USER2';
21
21
  /**
22
- * 报表模型
22
+ * 前端扩展插件
23
+ *
23
24
  * @type {string}
24
- * 来源 getReportModel
25
+ * 来源 getPSSysPFPlugin
25
26
  */
26
- reportModel?: string;
27
+ sysPFPluginId?: string;
28
+ /**
29
+ * 报表标记
30
+ * @type {string}
31
+ * 来源 getReportTag
32
+ */
33
+ reportTag?: string;
34
+ /**
35
+ * 报表标记2
36
+ * @type {string}
37
+ * 来源 getReportTag2
38
+ */
39
+ reportTag2?: string;
27
40
  /**
28
41
  * 报表类型
29
42
  * @type {string}
30
43
  * 来源 getReportType
31
44
  */
32
45
  reportType?: string;
46
+ /**
47
+ * 报表界面模型
48
+ * @type {string}
49
+ * 来源 getReportUIModel
50
+ */
51
+ reportUIModel?: string;
33
52
  /**
34
53
  * 系统统一资源代码
35
54
  * @type {string}
package/out/exports.d.ts CHANGED
@@ -59,6 +59,7 @@ export { IAppUIOpenDataLogic } from './app/logic/iapp-uiopen-data-logic';
59
59
  export { IMobAppStartPage } from './app/mob/imob-app-start-page';
60
60
  export { IAppMsgTempl } from './app/msg/iapp-msg-templ';
61
61
  export { IAppPFPluginRef } from './app/res/iapp-pfplugin-ref';
62
+ export { IAppSubViewTypeRef } from './app/res/iapp-sub-view-type-ref';
62
63
  export { IAppUITheme } from './app/theme/iapp-uitheme';
63
64
  export { IAppDraftStorageUtil } from './app/util/iapp-draft-storage-util';
64
65
  export { IAppDynaDashboardUtil } from './app/util/iapp-dyna-dashboard-util';
@@ -30,6 +30,12 @@ export interface ISubViewType extends IModelObject {
30
30
  * 来源 getViewModel
31
31
  */
32
32
  viewModel?: IModel;
33
+ /**
34
+ * 标准视图类型
35
+ * @type {string}
36
+ * 来源 getViewType
37
+ */
38
+ viewType?: string;
33
39
  /**
34
40
  * 仅扩展界面样式
35
41
  * @type {boolean}
@@ -23,6 +23,12 @@ export interface ISysPFPlugin extends IModelObject {
23
23
  * 来源 getPluginModel
24
24
  */
25
25
  pluginModel?: IModel;
26
+ /**
27
+ * 插件动态参数
28
+ * @type {IModel}
29
+ * 来源 getPluginParams
30
+ */
31
+ pluginParams?: IModel;
26
32
  /**
27
33
  * 插件标记
28
34
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.0.20",
3
+ "version": "0.0.22",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -16,6 +16,7 @@ import { IAppViewMsgGroup } from './view/iapp-view-msg-group';
16
16
  import { IAppWF } from './wf/iapp-wf';
17
17
  import { IDEOPPriv } from '../dataentity/priv/ideoppriv';
18
18
  import { IModelObject } from '../imodel-object';
19
+ import { IAppSubViewTypeRef } from '../exports';
19
20
 
20
21
  /**
21
22
  *
@@ -142,6 +143,8 @@ export interface IApplication extends IModelObject {
142
143
  */
143
144
  appViewMsgs?: IAppViewMsg[];
144
145
 
146
+ appSubViewTypeRefs?: IAppSubViewTypeRef[];
147
+
145
148
  /**
146
149
  * 应用工作流集合
147
150
  *
@@ -0,0 +1,76 @@
1
+ import { IViewLayoutPanel } from '../../control/panel/iview-layout-panel';
2
+ import { IModelObject } from '../../imodel-object';
3
+
4
+ /**
5
+ *
6
+ * @export
7
+ * @interface IAppSubViewTypeRef
8
+ */
9
+ export interface IAppSubViewTypeRef extends IModelObject {
10
+ /**
11
+ * 前端模板插件
12
+ *
13
+ * @type {string}
14
+ * 来源 getPSSysPFPlugin
15
+ */
16
+ sysPFPluginId?: string;
17
+
18
+ /**
19
+ * 视图布局面板
20
+ *
21
+ * @type {IViewLayoutPanel}
22
+ * 来源 getPSViewLayoutPanel
23
+ */
24
+ viewLayoutPanel?: IViewLayoutPanel;
25
+
26
+ /**
27
+ * 插件代码
28
+ * @type {string}
29
+ * 来源 getPluginCode
30
+ */
31
+ pluginCode?: string;
32
+
33
+ /**
34
+ * 引用标记
35
+ * @type {string}
36
+ * 来源 getRefTag
37
+ */
38
+ refTag?: string;
39
+
40
+ /**
41
+ * 类型代码
42
+ * @type {string}
43
+ * 来源 getTypeCode
44
+ */
45
+ typeCode?: string;
46
+
47
+ /**
48
+ * 视图模型
49
+ * @type {IModel}
50
+ * 来源 getViewModel
51
+ */
52
+ viewModel?: IModel;
53
+
54
+ /**
55
+ * 标准视图类型
56
+ * @type {string}
57
+ * 来源 getViewType
58
+ */
59
+ viewType?: string;
60
+
61
+ /**
62
+ * 仅扩展界面样式
63
+ * @type {boolean}
64
+ * @default false
65
+ * 来源 isExtendStyleOnly
66
+ */
67
+ extendStyleOnly?: boolean;
68
+
69
+ /**
70
+ * 全局默认替换
71
+ * @type {boolean}
72
+ * @default false
73
+ * 来源 isReplaceDefault
74
+ */
75
+ replaceDefault?: boolean;
76
+ }
@@ -13,6 +13,13 @@ export interface IAppUITheme extends IModelObject {
13
13
  */
14
14
  themeDesc?: string;
15
15
 
16
+ /**
17
+ * 主题参数集合
18
+ * @type {IModel}
19
+ * 来源 getThemeParams
20
+ */
21
+ themeParams?: IModel;
22
+
16
23
  /**
17
24
  * 主题标记
18
25
  * @type {string}
@@ -32,6 +32,13 @@ export interface ICalendarItem
32
32
  */
33
33
  color?: string;
34
34
 
35
+ /**
36
+ * 动态样式表
37
+ * @type {string}
38
+ * 来源 getDynaClass
39
+ */
40
+ dynaClass?: string;
41
+
35
42
  /**
36
43
  * 项内置样式
37
44
  * @description 值模式 [部件成员样式] {DEFAULT:默认样式、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
@@ -45,6 +45,13 @@ export interface IMapItem
45
45
  */
46
46
  color?: string;
47
47
 
48
+ /**
49
+ * 动态样式表
50
+ * @type {string}
51
+ * 来源 getDynaClass
52
+ */
53
+ dynaClass?: string;
54
+
48
55
  /**
49
56
  * 项样式
50
57
  * @description 值模式 [地图项样式] {POINT:点、 POINT2:点2、 POINT3:点3、 POINT4:点4、 LINE:连线、 LINE2:连线2、 LINE3:连线3、 LINE4:连线4、 REGION:区域、 REGION2:区域2、 REGION3:区域3、 REGION4:区域4、 USER:用户自定义、 USER2:用户自定义2、 USER3:用户自定义3、 USER4:用户自定义4 }
@@ -137,4 +144,19 @@ export interface IMapItem
137
144
  * 来源 getRadius
138
145
  */
139
146
  radius?: number;
147
+
148
+ /**
149
+ * 图形动态样式表
150
+ * @type {string}
151
+ * 来源 getShapeDynaClass
152
+ */
153
+ shapeDynaClass?: string;
154
+
155
+ /**
156
+ * 图形界面样式表
157
+ *
158
+ * @type {ISysCss}
159
+ * 来源 getShapePSSysCss
160
+ */
161
+ shapeSysCss?: ISysCss;
140
162
  }
@@ -142,6 +142,14 @@ export interface ISysMapItem extends IMapItem, IControlMDObject {
142
142
  */
143
143
  removeDEOPPrivId?: string;
144
144
 
145
+ /**
146
+ * 图形样式应用实体属性
147
+ *
148
+ * @type {string}
149
+ * 来源 getShapeClsPSAppDEField
150
+ */
151
+ shapeClsAppDEFieldId?: string;
152
+
145
153
  /**
146
154
  * 标记值2应用实体属性
147
155
  *
@@ -166,6 +174,14 @@ export interface ISysMapItem extends IMapItem, IControlMDObject {
166
174
  */
167
175
  textAppDEFieldId?: string;
168
176
 
177
+ /**
178
+ * 时间应用实体属性
179
+ *
180
+ * @type {string}
181
+ * 来源 getTimePSAppDEField
182
+ */
183
+ timeAppDEFieldId?: string;
184
+
169
185
  /**
170
186
  * 提示应用实体属性
171
187
  *
@@ -149,14 +149,6 @@ export interface IDEAction extends IModelObject {
149
149
  */
150
150
  orderValue?: number;
151
151
 
152
- /**
153
- * 性能优化预警时长(ms)
154
- * @type {number}
155
- * @default -1
156
- * 来源 getPOTime
157
- */
158
- potime?: number;
159
-
160
152
  /**
161
153
  * 前端扩展插件
162
154
  *
@@ -15,19 +15,25 @@ export interface IDEDataExport extends IModelObject {
15
15
  codeName?: string;
16
16
 
17
17
  /**
18
- * 最大记录数
19
- * @type {number}
20
- * 来源 getMaxRowCount
18
+ * 导入标记
19
+ * @type {string}
20
+ * 来源 getExpTag
21
21
  */
22
- maxRowCount?: number;
22
+ expTag?: string;
23
+
24
+ /**
25
+ * 导入标记2
26
+ * @type {string}
27
+ * 来源 getExpTag2
28
+ */
29
+ expTag2?: string;
23
30
 
24
31
  /**
25
- * 性能优化预警时长(ms)
32
+ * 最大记录数
26
33
  * @type {number}
27
- * @default -1
28
- * 来源 getPOTime
34
+ * 来源 getMaxRowCount
29
35
  */
30
- potime?: number;
36
+ maxRowCount?: number;
31
37
 
32
38
  /**
33
39
  * 导出项集合
@@ -52,4 +58,12 @@ export interface IDEDataExport extends IModelObject {
52
58
  * 来源 isDefaultMode
53
59
  */
54
60
  defaultMode?: boolean;
61
+
62
+ /**
63
+ * 支持自定义
64
+ * @type {boolean}
65
+ * @default false
66
+ * 来源 isEnableCustomized
67
+ */
68
+ enableCustomized?: boolean;
55
69
  }
@@ -29,12 +29,18 @@ export interface IDEDataImport extends IModelObject {
29
29
  createDataAccessAction?: string;
30
30
 
31
31
  /**
32
- * 性能优化预警时长(ms)
33
- * @type {number}
34
- * @default -1
35
- * 来源 getPOTime
32
+ * 导入标记
33
+ * @type {string}
34
+ * 来源 getImpTag
35
+ */
36
+ impTag?: string;
37
+
38
+ /**
39
+ * 导入标记2
40
+ * @type {string}
41
+ * 来源 getImpTag2
36
42
  */
37
- potime?: number;
43
+ impTag2?: string;
38
44
 
39
45
  /**
40
46
  * 导入项集合
@@ -67,6 +73,14 @@ export interface IDEDataImport extends IModelObject {
67
73
  */
68
74
  defaultMode?: boolean;
69
75
 
76
+ /**
77
+ * 支持自定义
78
+ * @type {boolean}
79
+ * @default false
80
+ * 来源 isEnableCustomized
81
+ */
82
+ enableCustomized?: boolean;
83
+
70
84
  /**
71
85
  * 忽略导入错误
72
86
  * @type {boolean}
@@ -14,6 +14,20 @@ export interface IDERBase extends IModelObject {
14
14
  */
15
15
  codeName?: string;
16
16
 
17
+ /**
18
+ * 关系标记
19
+ * @type {string}
20
+ * 来源 getDERTag
21
+ */
22
+ dertag?: string;
23
+
24
+ /**
25
+ * 关系标记2
26
+ * @type {string}
27
+ * 来源 getDERTag2
28
+ */
29
+ dertag2?: string;
30
+
17
31
  /**
18
32
  * 关系类型
19
33
  * @description 值模式 [实体关系类型] {DER1N:1:N关系、 DERINHERIT:继承关系、 DERINDEX:索引关系、 DER11:1:1 关系、 DERMULINH:多继承关系(虚拟实体)、 DERCUSTOM:自定义关系、 DERAGGDATA:聚合数据关系 }
@@ -13,6 +13,27 @@ export interface IDEPrint extends IModelObject {
13
13
  */
14
14
  codeName?: string;
15
15
 
16
+ /**
17
+ * 内容类型
18
+ * @description 值模式 [实体报表内容格式] {PDF:PDF、 HTML:HTML、 DOCX:DOCX、 XLSX:XLSX、 JSON:JSON、 XML:XML、 TEXT:TEXT、 MARKDOWN:MARKDOWN、 WORD:WORD(过期)、 EXCEL:EXCEL(过期)、 USER:用户自定义、 USER2:用户自定义2 }
19
+ * @type {( string | 'PDF' | 'HTML' | 'DOCX' | 'XLSX' | 'JSON' | 'XML' | 'TEXT' | 'MARKDOWN' | 'WORD' | 'EXCEL' | 'USER' | 'USER2')}
20
+ * 来源 getContentType
21
+ */
22
+ contentType?:
23
+ | string
24
+ | 'PDF'
25
+ | 'HTML'
26
+ | 'DOCX'
27
+ | 'XLSX'
28
+ | 'JSON'
29
+ | 'XML'
30
+ | 'TEXT'
31
+ | 'MARKDOWN'
32
+ | 'WORD'
33
+ | 'EXCEL'
34
+ | 'USER'
35
+ | 'USER2';
36
+
16
37
  /**
17
38
  * 数据访问标识
18
39
  * @type {string}
@@ -21,12 +42,26 @@ export interface IDEPrint extends IModelObject {
21
42
  dataAccessAction?: string;
22
43
 
23
44
  /**
24
- * 性能优化预警时长(ms)
25
- * @type {number}
26
- * @default -1
27
- * 来源 getPOTime
45
+ * 前端扩展插件
46
+ *
47
+ * @type {string}
48
+ * 来源 getPSSysPFPlugin
49
+ */
50
+ sysPFPluginId?: string;
51
+
52
+ /**
53
+ * 打印标记
54
+ * @type {string}
55
+ * 来源 getPrintTag
56
+ */
57
+ printTag?: string;
58
+
59
+ /**
60
+ * 打印标记2
61
+ * @type {string}
62
+ * 来源 getPrintTag2
28
63
  */
29
- potime?: number;
64
+ printTag2?: string;
30
65
 
31
66
  /**
32
67
  * 报表类型
@@ -14,19 +14,47 @@ export interface IDEReport extends IModelObject {
14
14
  codeName?: string;
15
15
 
16
16
  /**
17
- * 性能优化预警时长(ms)
18
- * @type {number}
19
- * @default -1
20
- * 来源 getPOTime
17
+ * 内容类型
18
+ * @description 值模式 [实体报表内容格式] {PDF:PDF、 HTML:HTML、 DOCX:DOCX、 XLSX:XLSX、 JSON:JSON、 XML:XML、 TEXT:TEXT、 MARKDOWN:MARKDOWN、 WORD:WORD(过期)、 EXCEL:EXCEL(过期)、 USER:用户自定义、 USER2:用户自定义2 }
19
+ * @type {( string | 'PDF' | 'HTML' | 'DOCX' | 'XLSX' | 'JSON' | 'XML' | 'TEXT' | 'MARKDOWN' | 'WORD' | 'EXCEL' | 'USER' | 'USER2')}
20
+ * 来源 getContentType
21
21
  */
22
- potime?: number;
22
+ contentType?:
23
+ | string
24
+ | 'PDF'
25
+ | 'HTML'
26
+ | 'DOCX'
27
+ | 'XLSX'
28
+ | 'JSON'
29
+ | 'XML'
30
+ | 'TEXT'
31
+ | 'MARKDOWN'
32
+ | 'WORD'
33
+ | 'EXCEL'
34
+ | 'USER'
35
+ | 'USER2';
23
36
 
24
37
  /**
25
- * 报表模型
38
+ * 前端扩展插件
39
+ *
26
40
  * @type {string}
27
- * 来源 getReportModel
41
+ * 来源 getPSSysPFPlugin
28
42
  */
29
- reportModel?: string;
43
+ sysPFPluginId?: string;
44
+
45
+ /**
46
+ * 报表标记
47
+ * @type {string}
48
+ * 来源 getReportTag
49
+ */
50
+ reportTag?: string;
51
+
52
+ /**
53
+ * 报表标记2
54
+ * @type {string}
55
+ * 来源 getReportTag2
56
+ */
57
+ reportTag2?: string;
30
58
 
31
59
  /**
32
60
  * 报表类型
@@ -35,6 +63,13 @@ export interface IDEReport extends IModelObject {
35
63
  */
36
64
  reportType?: string;
37
65
 
66
+ /**
67
+ * 报表界面模型
68
+ * @type {string}
69
+ * 来源 getReportUIModel
70
+ */
71
+ reportUIModel?: string;
72
+
38
73
  /**
39
74
  * 系统统一资源代码
40
75
  * @type {string}
package/src/exports.ts CHANGED
@@ -59,6 +59,7 @@ export { IAppUIOpenDataLogic } from './app/logic/iapp-uiopen-data-logic';
59
59
  export { IMobAppStartPage } from './app/mob/imob-app-start-page';
60
60
  export { IAppMsgTempl } from './app/msg/iapp-msg-templ';
61
61
  export { IAppPFPluginRef } from './app/res/iapp-pfplugin-ref';
62
+ export { IAppSubViewTypeRef } from './app/res/iapp-sub-view-type-ref';
62
63
  export { IAppUITheme } from './app/theme/iapp-uitheme';
63
64
  export { IAppDraftStorageUtil } from './app/util/iapp-draft-storage-util';
64
65
  export { IAppDynaDashboardUtil } from './app/util/iapp-dyna-dashboard-util';
@@ -35,6 +35,13 @@ export interface ISubViewType extends IModelObject {
35
35
  */
36
36
  viewModel?: IModel;
37
37
 
38
+ /**
39
+ * 标准视图类型
40
+ * @type {string}
41
+ * 来源 getViewType
42
+ */
43
+ viewType?: string;
44
+
38
45
  /**
39
46
  * 仅扩展界面样式
40
47
  * @type {boolean}
@@ -27,6 +27,13 @@ export interface ISysPFPlugin extends IModelObject {
27
27
  */
28
28
  pluginModel?: IModel;
29
29
 
30
+ /**
31
+ * 插件动态参数
32
+ * @type {IModel}
33
+ * 来源 getPluginParams
34
+ */
35
+ pluginParams?: IModel;
36
+
30
37
  /**
31
38
  * 插件标记
32
39
  * @type {string}