@ibiz/model-core 0.0.19 → 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.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.0.20] - 2023-10-31
11
+
12
+ ### Added
13
+
14
+ - 日历项、地图项支持自定义查询条件
15
+
10
16
  ## [0.0.19] - 2023-10-10
11
17
 
12
18
  ### 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
  *
@@ -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
  *
@@ -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,30 +7,6 @@ import { IModelObject } from '../../imodel-object';
7
7
  * @interface IDEACMode
8
8
  */
9
9
  export interface IDEACMode extends IModelObject {
10
- /**
11
- * 自填标记
12
- * @type {string}
13
- * 来源 getACTag
14
- */
15
- actag?: string;
16
- /**
17
- * 自填标记2
18
- * @type {string}
19
- * 来源 getACTag2
20
- */
21
- actag2?: string;
22
- /**
23
- * 自填标记3
24
- * @type {string}
25
- * 来源 getACTag3
26
- */
27
- actag3?: string;
28
- /**
29
- * 自填标记4
30
- * @type {string}
31
- * 来源 getACTag4
32
- */
33
- actag4?: string;
34
10
  /**
35
11
  * 自填类型
36
12
  * @description 值模式 [自动填充类型] {AUTOCOMPLETE:自动填充、 CHATCOMPLETION:聊天补全 }
@@ -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
  }
@@ -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:居中 }
@@ -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.19",
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
  *
@@ -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
  *
@@ -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,34 +8,6 @@ import { IModelObject } from '../../imodel-object';
8
8
  * @interface IDEACMode
9
9
  */
10
10
  export interface IDEACMode extends IModelObject {
11
- /**
12
- * 自填标记
13
- * @type {string}
14
- * 来源 getACTag
15
- */
16
- actag?: string;
17
-
18
- /**
19
- * 自填标记2
20
- * @type {string}
21
- * 来源 getACTag2
22
- */
23
- actag2?: string;
24
-
25
- /**
26
- * 自填标记3
27
- * @type {string}
28
- * 来源 getACTag3
29
- */
30
- actag3?: string;
31
-
32
- /**
33
- * 自填标记4
34
- * @type {string}
35
- * 来源 getACTag4
36
- */
37
- actag4?: string;
38
-
39
11
  /**
40
12
  * 自填类型
41
13
  * @description 值模式 [自动填充类型] {AUTOCOMPLETE:自动填充、 CHATCOMPLETION:聊天补全 }
@@ -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
  }
@@ -6,4 +6,4 @@ import { IDELogicNode } from './idelogic-node';
6
6
  * @export
7
7
  * @interface IDEDecisionLogic
8
8
  */
9
- export type IDEDecisionLogic = IDELogicNode
9
+ export type IDEDecisionLogic = IDELogicNode;
@@ -6,4 +6,4 @@ import { IDEUILogicNode } from './ideuilogic-node';
6
6
  * @export
7
7
  * @interface IDEUIDecisionLogic
8
8
  */
9
- export type IDEUIDecisionLogic = IDEUILogicNode
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
  * 显示模式
@@ -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