@ibiz/model-core 0.0.18 → 0.0.20

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 (34) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/out/app/dataentity/iapp-deuiaction.d.ts +7 -0
  3. package/out/app/view/iapp-view-msg.d.ts +3 -3
  4. package/out/control/calendar/isys-calendar-item.d.ts +20 -0
  5. package/out/control/editor/imarkdown.d.ts +44 -1
  6. package/out/control/editor/itext-area.d.ts +45 -1
  7. package/out/control/grid/idegrid-field-column.d.ts +8 -0
  8. package/out/control/map/isys-map-item.d.ts +20 -0
  9. package/out/dataentity/ac/ideacmode.d.ts +8 -0
  10. package/out/dataentity/der/iderbase.d.ts +13 -1
  11. package/out/dataentity/logic/idedecision-logic.d.ts +8 -0
  12. package/out/dataentity/logic/idedecision-logic.js +1 -0
  13. package/out/dataentity/logic/ideraw-code-logic.d.ts +6 -0
  14. package/out/dataentity/logic/ideuidecision-logic.d.ts +8 -0
  15. package/out/dataentity/logic/ideuidecision-logic.js +1 -0
  16. package/out/dataentity/logic/ideuimsg-box-logic.d.ts +3 -3
  17. package/out/exports.d.ts +2 -0
  18. package/out/view/iuiaction.d.ts +3 -3
  19. package/package.json +1 -1
  20. package/src/app/dataentity/iapp-deuiaction.ts +8 -0
  21. package/src/app/view/iapp-view-msg.ts +3 -3
  22. package/src/control/calendar/isys-calendar-item.ts +23 -0
  23. package/src/control/editor/imarkdown.ts +50 -1
  24. package/src/control/editor/itext-area.ts +50 -1
  25. package/src/control/grid/idegrid-field-column.ts +9 -0
  26. package/src/control/map/isys-map-item.ts +23 -0
  27. package/src/dataentity/ac/ideacmode.ts +9 -0
  28. package/src/dataentity/der/iderbase.ts +15 -1
  29. package/src/dataentity/logic/idedecision-logic.ts +9 -0
  30. package/src/dataentity/logic/ideraw-code-logic.ts +7 -0
  31. package/src/dataentity/logic/ideuidecision-logic.ts +9 -0
  32. package/src/dataentity/logic/ideuimsg-box-logic.ts +3 -3
  33. package/src/exports.ts +2 -0
  34. package/src/view/iuiaction.ts +3 -2
package/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.0.20] - 2023-10-31
11
+
12
+ ### Added
13
+
14
+ - 日历项、地图项支持自定义查询条件
15
+
16
+ ## [0.0.19] - 2023-10-10
17
+
18
+ ### Added
19
+
20
+ - markdown、text-area 支持自填模式、导航参数相关
21
+ - 实体逻辑新增 DECISION 类型
22
+ - 界面逻辑新增 DECISION 类型
23
+
10
24
  ## [0.0.18] - 2023-09-20
11
25
 
12
26
  ### Added
@@ -21,6 +21,13 @@ export interface IAppDEUIAction extends IDEUIAction, IAppUIAction {
21
21
  * 来源 getFrontPSAppView
22
22
  */
23
23
  frontAppViewId?: string;
24
+ /**
25
+ * 应用实体自填模式
26
+ *
27
+ * @type {string}
28
+ * 来源 getPSAppDEACMode
29
+ */
30
+ appDEACModeId?: string;
24
31
  /**
25
32
  * 应用实体数据导出
26
33
  *
@@ -15,12 +15,12 @@ export interface IAppViewMsg extends IModelObject {
15
15
  codeName?: string;
16
16
  /**
17
17
  * 动态模式
18
- * @description 值模式 [是否] {1:是、 0:否 }
19
- * @type {( number | 1 | 0)}
18
+ * @description 值模式 [视图消息动态模式] {0:静态内容、 1:实体数据集 }
19
+ * @type {( number | 0 | 1)}
20
20
  * @default 0
21
21
  * 来源 getDynamicMode
22
22
  */
23
- dynamicMode?: number | 1 | 0;
23
+ dynamicMode?: number | 0 | 1;
24
24
  /**
25
25
  * 显示消息
26
26
  * @type {string}
@@ -54,6 +54,26 @@ export interface ISysCalendarItem extends IDECalendarItem {
54
54
  * 来源 getCreatePSDEOPPriv
55
55
  */
56
56
  createDEOPPrivId?: string;
57
+ /**
58
+ * 附加查询条件
59
+ * @type {string}
60
+ * 来源 getCustomCond
61
+ */
62
+ customCond?: string;
63
+ /**
64
+ * 数据值2应用实体属性
65
+ *
66
+ * @type {string}
67
+ * 来源 getData2PSAppDEField
68
+ */
69
+ data2AppDEFieldId?: string;
70
+ /**
71
+ * 数据值应用实体属性
72
+ *
73
+ * @type {string}
74
+ * 来源 getDataPSAppDEField
75
+ */
76
+ dataAppDEFieldId?: string;
57
77
  /**
58
78
  * 结束时间应用实体属性
59
79
  *
@@ -1,3 +1,4 @@
1
+ import { INavigateParamContainer } from '../inavigate-param-container';
1
2
  import { ITextEditor } from './itext-editor';
2
3
  /**
3
4
  *
@@ -5,11 +6,53 @@ import { ITextEditor } from './itext-editor';
5
6
  * @export
6
7
  * @interface IMarkdown
7
8
  */
8
- export interface IMarkdown extends ITextEditor {
9
+ export interface IMarkdown extends ITextEditor, INavigateParamContainer {
9
10
  /**
10
11
  * 功能模式[MODE]{EDIT|PREVIEW|SUBFIELD|PREVIEWONLY}
11
12
  * @type {string}
12
13
  * 来源 getMode
13
14
  */
14
15
  mode?: string;
16
+ /**
17
+ * 应用实体自填模式对象
18
+ *
19
+ * @type {string}
20
+ * 来源 getPSAppDEACMode
21
+ */
22
+ appDEACModeId?: string;
23
+ /**
24
+ * 应用实体结果集对象
25
+ *
26
+ * @type {string}
27
+ * 来源 getPSAppDEDataSet
28
+ */
29
+ appDEDataSetId?: string;
30
+ /**
31
+ * 应用实体对象
32
+ *
33
+ * @type {string}
34
+ * 来源 getPSAppDataEntity
35
+ */
36
+ appDataEntityId?: string;
37
+ /**
38
+ * 选择视图
39
+ *
40
+ * @type {string}
41
+ * 来源 getPickupPSAppView
42
+ */
43
+ pickupAppViewId?: string;
44
+ /**
45
+ * 支持自动填充[AC]
46
+ * @type {boolean}
47
+ * @default false
48
+ * 来源 isEnableAC
49
+ */
50
+ enableAC?: boolean;
51
+ /**
52
+ * 支持选择视图[PICKUPVIEW]
53
+ * @type {boolean}
54
+ * @default false
55
+ * 来源 isEnablePickupView
56
+ */
57
+ enablePickupView?: boolean;
15
58
  }
@@ -1,3 +1,4 @@
1
+ import { INavigateParamContainer } from '../inavigate-param-container';
1
2
  import { ITextEditor } from './itext-editor';
2
3
  /**
3
4
  *
@@ -5,4 +6,47 @@ import { ITextEditor } from './itext-editor';
5
6
  * @export
6
7
  * @interface ITextArea
7
8
  */
8
- export type ITextArea = ITextEditor;
9
+ export interface ITextArea extends ITextEditor, INavigateParamContainer {
10
+ /**
11
+ * 应用实体自填模式对象
12
+ *
13
+ * @type {string}
14
+ * 来源 getPSAppDEACMode
15
+ */
16
+ appDEACModeId?: string;
17
+ /**
18
+ * 应用实体结果集对象
19
+ *
20
+ * @type {string}
21
+ * 来源 getPSAppDEDataSet
22
+ */
23
+ appDEDataSetId?: string;
24
+ /**
25
+ * 应用实体对象
26
+ *
27
+ * @type {string}
28
+ * 来源 getPSAppDataEntity
29
+ */
30
+ appDataEntityId?: string;
31
+ /**
32
+ * 选择视图
33
+ *
34
+ * @type {string}
35
+ * 来源 getPickupPSAppView
36
+ */
37
+ pickupAppViewId?: string;
38
+ /**
39
+ * 支持自动填充[AC]
40
+ * @type {boolean}
41
+ * @default false
42
+ * 来源 isEnableAC
43
+ */
44
+ enableAC?: boolean;
45
+ /**
46
+ * 支持选择视图[PICKUPVIEW]
47
+ * @type {boolean}
48
+ * @default false
49
+ * 来源 isEnablePickupView
50
+ */
51
+ enablePickupView?: boolean;
52
+ }
@@ -1,5 +1,6 @@
1
1
  import { IEditor } from '../ieditor';
2
2
  import { IDEGridColumn } from './idegrid-column';
3
+ import { IDEUIActionGroup } from '../../dataentity/uiaction/ideuiaction-group';
3
4
  /**
4
5
  *
5
6
  * 继承父接口类型值[DEFGRIDCOLUMN]
@@ -79,6 +80,13 @@ export interface IDEGridFieldColumn extends IDEGridColumn {
79
80
  * 来源 getPSDEUIAction
80
81
  */
81
82
  deuiactionId?: string;
83
+ /**
84
+ * 界面行为组
85
+ *
86
+ * @type {IDEUIActionGroup}
87
+ * 来源 getPSDEUIActionGroup
88
+ */
89
+ deuiactionGroup?: IDEUIActionGroup;
82
90
  /**
83
91
  * 多项文本分隔符[TEXTSEPARATOR]
84
92
  * @type {string}
@@ -41,6 +41,26 @@ export interface ISysMapItem extends IMapItem, IControlMDObject {
41
41
  * 来源 getContentPSAppDEField
42
42
  */
43
43
  contentAppDEFieldId?: string;
44
+ /**
45
+ * 附加查询条件
46
+ * @type {string}
47
+ * 来源 getCustomCond
48
+ */
49
+ customCond?: string;
50
+ /**
51
+ * 数据值2应用实体属性
52
+ *
53
+ * @type {string}
54
+ * 来源 getData2PSAppDEField
55
+ */
56
+ data2AppDEFieldId?: string;
57
+ /**
58
+ * 数据值应用实体属性
59
+ *
60
+ * @type {string}
61
+ * 来源 getDataPSAppDEField
62
+ */
63
+ dataAppDEFieldId?: string;
44
64
  /**
45
65
  * 分组值应用实体属性
46
66
  *
@@ -7,6 +7,14 @@ import { IModelObject } from '../../imodel-object';
7
7
  * @interface IDEACMode
8
8
  */
9
9
  export interface IDEACMode extends IModelObject {
10
+ /**
11
+ * 自填类型
12
+ * @description 值模式 [自动填充类型] {AUTOCOMPLETE:自动填充、 CHATCOMPLETION:聊天补全 }
13
+ * @type {( string | 'AUTOCOMPLETE' | 'CHATCOMPLETION')}
14
+ * @default AUTOCOMPLETE
15
+ * 来源 getACType
16
+ */
17
+ actype?: string | 'AUTOCOMPLETE' | 'CHATCOMPLETION';
10
18
  /**
11
19
  * 代码标识
12
20
  * @type {string}
@@ -26,15 +26,27 @@ export interface IDERBase extends IModelObject {
26
26
  */
27
27
  logicName?: string;
28
28
  /**
29
- * 关系数据代码名称
29
+ * 关系数据代码标识
30
30
  * @type {string}
31
31
  * 来源 getMinorCodeName
32
32
  */
33
33
  minorCodeName?: string;
34
+ /**
35
+ * 关系数据服务代码标识
36
+ * @type {string}
37
+ * 来源 getMinorServiceCodeName
38
+ */
39
+ minorServiceCodeName?: string;
34
40
  /**
35
41
  * 排序值
36
42
  * @type {number}
37
43
  * 来源 getOrderValue
38
44
  */
39
45
  orderValue?: number;
46
+ /**
47
+ * 服务代码标识
48
+ * @type {string}
49
+ * 来源 getServiceCodeName
50
+ */
51
+ serviceCodeName?: string;
40
52
  }
@@ -0,0 +1,8 @@
1
+ import { IDELogicNode } from './idelogic-node';
2
+ /**
3
+ *
4
+ * 继承父接口类型值[DECISION]
5
+ * @export
6
+ * @interface IDEDecisionLogic
7
+ */
8
+ export type IDEDecisionLogic = IDELogicNode;
@@ -0,0 +1 @@
1
+ export {};
@@ -12,6 +12,12 @@ export interface IDERawCodeLogic extends IDELogicNode {
12
12
  * 来源 getCode
13
13
  */
14
14
  code?: string;
15
+ /**
16
+ * 代码类型
17
+ * @type {string}
18
+ * 来源 getCodeType
19
+ */
20
+ codeType?: string;
15
21
  /**
16
22
  * 目标逻辑参数对象
17
23
  *
@@ -0,0 +1,8 @@
1
+ import { IDEUILogicNode } from './ideuilogic-node';
2
+ /**
3
+ *
4
+ * 继承父接口类型值[DECISION]
5
+ * @export
6
+ * @interface IDEUIDecisionLogic
7
+ */
8
+ export type IDEUIDecisionLogic = IDEUILogicNode;
@@ -0,0 +1 @@
1
+ export {};
@@ -28,11 +28,11 @@ export interface IDEUIMsgBoxLogic extends IDEUILogicNode {
28
28
  msgBoxParamId?: string;
29
29
  /**
30
30
  * 消息框类型
31
- * @description 值模式 [消息框类型] {INFO:常规、 QUESTION:询问、 WARNING:警告、 ERROR:错误 }
32
- * @type {( string | 'INFO' | 'QUESTION' | 'WARNING' | 'ERROR')}
31
+ * @description 值模式 [消息框类型] {INFO:常规、 QUESTION:询问、 WARNING:警告、 ERROR:错误、 PROMPT:提示输入 }
32
+ * @type {( string | 'INFO' | 'QUESTION' | 'WARNING' | 'ERROR' | 'PROMPT')}
33
33
  * 来源 getMsgBoxType
34
34
  */
35
- msgBoxType?: string | 'INFO' | 'QUESTION' | 'WARNING' | 'ERROR';
35
+ msgBoxType?: string | 'INFO' | 'QUESTION' | 'WARNING' | 'ERROR' | 'PROMPT';
36
36
  /**
37
37
  * 显示模式
38
38
  * @description 值模式 [消息框显示模式] {CENTER:居中 }
package/out/exports.d.ts CHANGED
@@ -630,6 +630,7 @@ export { IDEDEDataQueryLogic } from './dataentity/logic/idededata-query-logic';
630
630
  export { IDEDEDataSetLogic } from './dataentity/logic/idededata-set-logic';
631
631
  export { IDEDELogicLogic } from './dataentity/logic/idedelogic-logic';
632
632
  export { IDEDebugParamLogic } from './dataentity/logic/idedebug-param-logic';
633
+ export { IDEDecisionLogic } from './dataentity/logic/idedecision-logic';
633
634
  export { IDEEndLogic } from './dataentity/logic/ideend-logic';
634
635
  export { IDEFLogic } from './dataentity/logic/ideflogic';
635
636
  export { IDEFilterParam2Logic } from './dataentity/logic/idefilter-param2-logic';
@@ -660,6 +661,7 @@ export { IDEUIDEActionLogic } from './dataentity/logic/ideuideaction-logic';
660
661
  export { IDEUIDEDataSetLogic } from './dataentity/logic/ideuidedata-set-logic';
661
662
  export { IDEUIDELogicLogic } from './dataentity/logic/ideuidelogic-logic';
662
663
  export { IDEUIDebugParamLogic } from './dataentity/logic/ideuidebug-param-logic';
664
+ export { IDEUIDecisionLogic } from './dataentity/logic/ideuidecision-logic';
663
665
  export { IDEUIEndLogic } from './dataentity/logic/ideuiend-logic';
664
666
  export { IDEUILogic } from './dataentity/logic/ideuilogic';
665
667
  export { IDEUILogicLink } from './dataentity/logic/ideuilogic-link';
@@ -76,11 +76,11 @@ export interface IUIAction extends INavigateParamContainer {
76
76
  frontAppViewId?: string;
77
77
  /**
78
78
  * 前台处理类型
79
- * @description 值模式 [云实体界面行为_前台处理类型] {WIZARD:打开视图或向导(模态)、 TOP:打开顶级视图、 PRINT:打开打印视图、 DATAIMP:打开数据导入视图、 DATAEXP:打开数据导出视图、 OPENHTMLPAGE:打开HTML页面、 OTHER:用户自定义 }
80
- * @type {( string | 'WIZARD' | 'TOP' | 'PRINT' | 'DATAIMP' | 'DATAEXP' | 'OPENHTMLPAGE' | 'OTHER')}
79
+ * @description 值模式 [云实体界面行为_前台处理类型] {WIZARD:打开视图或向导(模态)、 TOP:打开顶级视图、 PRINT:打开打印视图、 DATAIMP:打开数据导入视图、 DATAEXP:打开数据导出视图、 CHAT:打开聊天界面、 OPENHTMLPAGE:打开HTML页面、 OTHER:用户自定义 }
80
+ * @type {( string | 'WIZARD' | 'TOP' | 'PRINT' | 'DATAIMP' | 'DATAEXP' | 'CHAT' | 'OPENHTMLPAGE' | 'OTHER')}
81
81
  * 来源 getFrontProcessType
82
82
  */
83
- frontProcessType?: string | 'WIZARD' | 'TOP' | 'PRINT' | 'DATAIMP' | 'DATAEXP' | 'OPENHTMLPAGE' | 'OTHER';
83
+ frontProcessType?: string | 'WIZARD' | 'TOP' | 'PRINT' | 'DATAIMP' | 'DATAEXP' | 'CHAT' | 'OPENHTMLPAGE' | 'OTHER';
84
84
  /**
85
85
  * 完全代码标识
86
86
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.0.18",
3
+ "version": "0.0.20",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -24,6 +24,14 @@ export interface IAppDEUIAction extends IDEUIAction, IAppUIAction {
24
24
  */
25
25
  frontAppViewId?: string;
26
26
 
27
+ /**
28
+ * 应用实体自填模式
29
+ *
30
+ * @type {string}
31
+ * 来源 getPSAppDEACMode
32
+ */
33
+ appDEACModeId?: string;
34
+
27
35
  /**
28
36
  * 应用实体数据导出
29
37
  *
@@ -17,12 +17,12 @@ export interface IAppViewMsg extends IModelObject {
17
17
 
18
18
  /**
19
19
  * 动态模式
20
- * @description 值模式 [是否] {1:是、 0:否 }
21
- * @type {( number | 1 | 0)}
20
+ * @description 值模式 [视图消息动态模式] {0:静态内容、 1:实体数据集 }
21
+ * @type {( number | 0 | 1)}
22
22
  * @default 0
23
23
  * 来源 getDynamicMode
24
24
  */
25
- dynamicMode?: number | 1 | 0;
25
+ dynamicMode?: number | 0 | 1;
26
26
 
27
27
  /**
28
28
  * 显示消息
@@ -62,6 +62,29 @@ export interface ISysCalendarItem extends IDECalendarItem {
62
62
  */
63
63
  createDEOPPrivId?: string;
64
64
 
65
+ /**
66
+ * 附加查询条件
67
+ * @type {string}
68
+ * 来源 getCustomCond
69
+ */
70
+ customCond?: string;
71
+
72
+ /**
73
+ * 数据值2应用实体属性
74
+ *
75
+ * @type {string}
76
+ * 来源 getData2PSAppDEField
77
+ */
78
+ data2AppDEFieldId?: string;
79
+
80
+ /**
81
+ * 数据值应用实体属性
82
+ *
83
+ * @type {string}
84
+ * 来源 getDataPSAppDEField
85
+ */
86
+ dataAppDEFieldId?: string;
87
+
65
88
  /**
66
89
  * 结束时间应用实体属性
67
90
  *
@@ -1,3 +1,4 @@
1
+ import { INavigateParamContainer } from '../inavigate-param-container';
1
2
  import { ITextEditor } from './itext-editor';
2
3
 
3
4
  /**
@@ -6,11 +7,59 @@ import { ITextEditor } from './itext-editor';
6
7
  * @export
7
8
  * @interface IMarkdown
8
9
  */
9
- export interface IMarkdown extends ITextEditor {
10
+ export interface IMarkdown extends ITextEditor, INavigateParamContainer {
10
11
  /**
11
12
  * 功能模式[MODE]{EDIT|PREVIEW|SUBFIELD|PREVIEWONLY}
12
13
  * @type {string}
13
14
  * 来源 getMode
14
15
  */
15
16
  mode?: string;
17
+
18
+ /**
19
+ * 应用实体自填模式对象
20
+ *
21
+ * @type {string}
22
+ * 来源 getPSAppDEACMode
23
+ */
24
+ appDEACModeId?: string;
25
+
26
+ /**
27
+ * 应用实体结果集对象
28
+ *
29
+ * @type {string}
30
+ * 来源 getPSAppDEDataSet
31
+ */
32
+ appDEDataSetId?: string;
33
+
34
+ /**
35
+ * 应用实体对象
36
+ *
37
+ * @type {string}
38
+ * 来源 getPSAppDataEntity
39
+ */
40
+ appDataEntityId?: string;
41
+
42
+ /**
43
+ * 选择视图
44
+ *
45
+ * @type {string}
46
+ * 来源 getPickupPSAppView
47
+ */
48
+ pickupAppViewId?: string;
49
+
50
+ /**
51
+ * 支持自动填充[AC]
52
+ * @type {boolean}
53
+ * @default false
54
+ * 来源 isEnableAC
55
+ */
56
+ enableAC?: boolean;
57
+
58
+ /**
59
+ * 支持选择视图[PICKUPVIEW]
60
+ * @type {boolean}
61
+ * @default false
62
+ * 来源 isEnablePickupView
63
+ */
64
+ enablePickupView?: boolean;
16
65
  }
@@ -1,3 +1,4 @@
1
+ import { INavigateParamContainer } from '../inavigate-param-container';
1
2
  import { ITextEditor } from './itext-editor';
2
3
 
3
4
  /**
@@ -6,4 +7,52 @@ import { ITextEditor } from './itext-editor';
6
7
  * @export
7
8
  * @interface ITextArea
8
9
  */
9
- export type ITextArea = ITextEditor;
10
+ export interface ITextArea extends ITextEditor, INavigateParamContainer {
11
+ /**
12
+ * 应用实体自填模式对象
13
+ *
14
+ * @type {string}
15
+ * 来源 getPSAppDEACMode
16
+ */
17
+ appDEACModeId?: string;
18
+
19
+ /**
20
+ * 应用实体结果集对象
21
+ *
22
+ * @type {string}
23
+ * 来源 getPSAppDEDataSet
24
+ */
25
+ appDEDataSetId?: string;
26
+
27
+ /**
28
+ * 应用实体对象
29
+ *
30
+ * @type {string}
31
+ * 来源 getPSAppDataEntity
32
+ */
33
+ appDataEntityId?: string;
34
+
35
+ /**
36
+ * 选择视图
37
+ *
38
+ * @type {string}
39
+ * 来源 getPickupPSAppView
40
+ */
41
+ pickupAppViewId?: string;
42
+
43
+ /**
44
+ * 支持自动填充[AC]
45
+ * @type {boolean}
46
+ * @default false
47
+ * 来源 isEnableAC
48
+ */
49
+ enableAC?: boolean;
50
+
51
+ /**
52
+ * 支持选择视图[PICKUPVIEW]
53
+ * @type {boolean}
54
+ * @default false
55
+ * 来源 isEnablePickupView
56
+ */
57
+ enablePickupView?: boolean;
58
+ }
@@ -1,5 +1,6 @@
1
1
  import { IEditor } from '../ieditor';
2
2
  import { IDEGridColumn } from './idegrid-column';
3
+ import { IDEUIActionGroup } from '../../dataentity/uiaction/ideuiaction-group';
3
4
 
4
5
  /**
5
6
  *
@@ -91,6 +92,14 @@ export interface IDEGridFieldColumn extends IDEGridColumn {
91
92
  */
92
93
  deuiactionId?: string;
93
94
 
95
+ /**
96
+ * 界面行为组
97
+ *
98
+ * @type {IDEUIActionGroup}
99
+ * 来源 getPSDEUIActionGroup
100
+ */
101
+ deuiactionGroup?: IDEUIActionGroup;
102
+
94
103
  /**
95
104
  * 多项文本分隔符[TEXTSEPARATOR]
96
105
  * @type {string}
@@ -47,6 +47,29 @@ export interface ISysMapItem extends IMapItem, IControlMDObject {
47
47
  */
48
48
  contentAppDEFieldId?: string;
49
49
 
50
+ /**
51
+ * 附加查询条件
52
+ * @type {string}
53
+ * 来源 getCustomCond
54
+ */
55
+ customCond?: string;
56
+
57
+ /**
58
+ * 数据值2应用实体属性
59
+ *
60
+ * @type {string}
61
+ * 来源 getData2PSAppDEField
62
+ */
63
+ data2AppDEFieldId?: string;
64
+
65
+ /**
66
+ * 数据值应用实体属性
67
+ *
68
+ * @type {string}
69
+ * 来源 getDataPSAppDEField
70
+ */
71
+ dataAppDEFieldId?: string;
72
+
50
73
  /**
51
74
  * 分组值应用实体属性
52
75
  *
@@ -8,6 +8,15 @@ import { IModelObject } from '../../imodel-object';
8
8
  * @interface IDEACMode
9
9
  */
10
10
  export interface IDEACMode extends IModelObject {
11
+ /**
12
+ * 自填类型
13
+ * @description 值模式 [自动填充类型] {AUTOCOMPLETE:自动填充、 CHATCOMPLETION:聊天补全 }
14
+ * @type {( string | 'AUTOCOMPLETE' | 'CHATCOMPLETION')}
15
+ * @default AUTOCOMPLETE
16
+ * 来源 getACType
17
+ */
18
+ actype?: string | 'AUTOCOMPLETE' | 'CHATCOMPLETION';
19
+
11
20
  /**
12
21
  * 代码标识
13
22
  * @type {string}
@@ -38,16 +38,30 @@ export interface IDERBase extends IModelObject {
38
38
  logicName?: string;
39
39
 
40
40
  /**
41
- * 关系数据代码名称
41
+ * 关系数据代码标识
42
42
  * @type {string}
43
43
  * 来源 getMinorCodeName
44
44
  */
45
45
  minorCodeName?: string;
46
46
 
47
+ /**
48
+ * 关系数据服务代码标识
49
+ * @type {string}
50
+ * 来源 getMinorServiceCodeName
51
+ */
52
+ minorServiceCodeName?: string;
53
+
47
54
  /**
48
55
  * 排序值
49
56
  * @type {number}
50
57
  * 来源 getOrderValue
51
58
  */
52
59
  orderValue?: number;
60
+
61
+ /**
62
+ * 服务代码标识
63
+ * @type {string}
64
+ * 来源 getServiceCodeName
65
+ */
66
+ serviceCodeName?: string;
53
67
  }
@@ -0,0 +1,9 @@
1
+ import { IDELogicNode } from './idelogic-node';
2
+
3
+ /**
4
+ *
5
+ * 继承父接口类型值[DECISION]
6
+ * @export
7
+ * @interface IDEDecisionLogic
8
+ */
9
+ export type IDEDecisionLogic = IDELogicNode;
@@ -14,6 +14,13 @@ export interface IDERawCodeLogic extends IDELogicNode {
14
14
  */
15
15
  code?: string;
16
16
 
17
+ /**
18
+ * 代码类型
19
+ * @type {string}
20
+ * 来源 getCodeType
21
+ */
22
+ codeType?: string;
23
+
17
24
  /**
18
25
  * 目标逻辑参数对象
19
26
  *
@@ -0,0 +1,9 @@
1
+ import { IDEUILogicNode } from './ideuilogic-node';
2
+
3
+ /**
4
+ *
5
+ * 继承父接口类型值[DECISION]
6
+ * @export
7
+ * @interface IDEUIDecisionLogic
8
+ */
9
+ export type IDEUIDecisionLogic = IDEUILogicNode;
@@ -32,11 +32,11 @@ export interface IDEUIMsgBoxLogic extends IDEUILogicNode {
32
32
 
33
33
  /**
34
34
  * 消息框类型
35
- * @description 值模式 [消息框类型] {INFO:常规、 QUESTION:询问、 WARNING:警告、 ERROR:错误 }
36
- * @type {( string | 'INFO' | 'QUESTION' | 'WARNING' | 'ERROR')}
35
+ * @description 值模式 [消息框类型] {INFO:常规、 QUESTION:询问、 WARNING:警告、 ERROR:错误、 PROMPT:提示输入 }
36
+ * @type {( string | 'INFO' | 'QUESTION' | 'WARNING' | 'ERROR' | 'PROMPT')}
37
37
  * 来源 getMsgBoxType
38
38
  */
39
- msgBoxType?: string | 'INFO' | 'QUESTION' | 'WARNING' | 'ERROR';
39
+ msgBoxType?: string | 'INFO' | 'QUESTION' | 'WARNING' | 'ERROR' | 'PROMPT';
40
40
 
41
41
  /**
42
42
  * 显示模式
package/src/exports.ts CHANGED
@@ -630,6 +630,7 @@ export { IDEDEDataQueryLogic } from './dataentity/logic/idededata-query-logic';
630
630
  export { IDEDEDataSetLogic } from './dataentity/logic/idededata-set-logic';
631
631
  export { IDEDELogicLogic } from './dataentity/logic/idedelogic-logic';
632
632
  export { IDEDebugParamLogic } from './dataentity/logic/idedebug-param-logic';
633
+ export { IDEDecisionLogic } from './dataentity/logic/idedecision-logic';
633
634
  export { IDEEndLogic } from './dataentity/logic/ideend-logic';
634
635
  export { IDEFLogic } from './dataentity/logic/ideflogic';
635
636
  export { IDEFilterParam2Logic } from './dataentity/logic/idefilter-param2-logic';
@@ -660,6 +661,7 @@ export { IDEUIDEActionLogic } from './dataentity/logic/ideuideaction-logic';
660
661
  export { IDEUIDEDataSetLogic } from './dataentity/logic/ideuidedata-set-logic';
661
662
  export { IDEUIDELogicLogic } from './dataentity/logic/ideuidelogic-logic';
662
663
  export { IDEUIDebugParamLogic } from './dataentity/logic/ideuidebug-param-logic';
664
+ export { IDEUIDecisionLogic } from './dataentity/logic/ideuidecision-logic';
663
665
  export { IDEUIEndLogic } from './dataentity/logic/ideuiend-logic';
664
666
  export { IDEUILogic } from './dataentity/logic/ideuilogic';
665
667
  export { IDEUILogicLink } from './dataentity/logic/ideuilogic-link';
@@ -93,8 +93,8 @@ export interface IUIAction extends INavigateParamContainer {
93
93
 
94
94
  /**
95
95
  * 前台处理类型
96
- * @description 值模式 [云实体界面行为_前台处理类型] {WIZARD:打开视图或向导(模态)、 TOP:打开顶级视图、 PRINT:打开打印视图、 DATAIMP:打开数据导入视图、 DATAEXP:打开数据导出视图、 OPENHTMLPAGE:打开HTML页面、 OTHER:用户自定义 }
97
- * @type {( string | 'WIZARD' | 'TOP' | 'PRINT' | 'DATAIMP' | 'DATAEXP' | 'OPENHTMLPAGE' | 'OTHER')}
96
+ * @description 值模式 [云实体界面行为_前台处理类型] {WIZARD:打开视图或向导(模态)、 TOP:打开顶级视图、 PRINT:打开打印视图、 DATAIMP:打开数据导入视图、 DATAEXP:打开数据导出视图、 CHAT:打开聊天界面、 OPENHTMLPAGE:打开HTML页面、 OTHER:用户自定义 }
97
+ * @type {( string | 'WIZARD' | 'TOP' | 'PRINT' | 'DATAIMP' | 'DATAEXP' | 'CHAT' | 'OPENHTMLPAGE' | 'OTHER')}
98
98
  * 来源 getFrontProcessType
99
99
  */
100
100
  frontProcessType?:
@@ -104,6 +104,7 @@ export interface IUIAction extends INavigateParamContainer {
104
104
  | 'PRINT'
105
105
  | 'DATAIMP'
106
106
  | 'DATAEXP'
107
+ | 'CHAT'
107
108
  | 'OPENHTMLPAGE'
108
109
  | 'OTHER';
109
110