@ibiz/model-core 0.0.27 → 0.0.29

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,19 @@
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.0.29] - 2023-12-25
11
+
12
+ ### Added
13
+
14
+ - 树部件的数据节点新增 detreeColumnId 转换
15
+
16
+ ## [0.0.28] - 2023-12-20
17
+
18
+ ### Added
19
+
20
+ - IAppDEMethodDTOField 新增 refPickupAppDEFieldId 标明引用关系标识属性
21
+ - 应用、视图、代码表新增 dynaSysMode 标识
22
+
10
23
  ## [0.0.27] - 2023-12-11
11
24
 
12
25
  ### Added
@@ -44,6 +44,13 @@ export interface IAppDEMethodDTOField extends IModelObject {
44
44
  * 来源 getRefPSAppDataEntity
45
45
  */
46
46
  refAppDataEntityId?: string;
47
+ /**
48
+ * 引用应用实体的连接属性
49
+ *
50
+ * @type {string}
51
+ * 来源 getRefPickupPSAppDEField
52
+ */
53
+ refPickupAppDEFieldId?: string;
47
54
  /**
48
55
  * DTO属性来源类型
49
56
  * @description 值模式 [实体方法DTO对象属性来源类型] {DEFIELD:实体属性、 DEFGROUPDETAIL:实体属性组成员、 DER:实体关系、 DYNAMODELATTR:动态模型属性、 DEACTIONPARAM:实体行为参数、 DEFSEARCHMODE:属性搜索模式、 DEDATASETPARAM:实体数据集参数 }
@@ -205,6 +205,14 @@ export interface IApplication extends IModelObject {
205
205
  * 来源 getCodeName
206
206
  */
207
207
  codeName?: string;
208
+ /**
209
+ * 动态系统模式
210
+ * @description 值模式 [动态系统模式] {0:不启用、 1:启用 }
211
+ * @type {( number | 0 | 1)}
212
+ * @default 0
213
+ * 来源 getDynaSysMode
214
+ */
215
+ dynaSysMode?: number | 0 | 1;
208
216
  /**
209
217
  * 模型引擎版本
210
218
  * @type {number}
@@ -49,6 +49,14 @@ export interface IAppView extends IControlContainer {
49
49
  * 来源 getCodeName
50
50
  */
51
51
  codeName?: string;
52
+ /**
53
+ * 动态系统模式
54
+ * @description 值模式 [动态系统模式] {0:不启用、 1:启用 }
55
+ * @type {( number | 0 | 1)}
56
+ * @default 0
57
+ * 来源 getDynaSysMode
58
+ */
59
+ dynaSysMode?: number | 0 | 1;
52
60
  /**
53
61
  * 视图高度
54
62
  * @type {number}
@@ -39,6 +39,14 @@ export interface ICodeList extends IModelObject {
39
39
  * 来源 getCustomCond
40
40
  */
41
41
  customCond?: string;
42
+ /**
43
+ * 动态系统模式
44
+ * @description 值模式 [动态系统模式] {0:不启用、 1:启用 }
45
+ * @type {( number | 0 | 1)}
46
+ * @default 0
47
+ * 来源 getDynaSysMode
48
+ */
49
+ dynaSysMode?: number | 0 | 1;
42
50
  /**
43
51
  * 空白显示文本
44
52
  * @type {string}
@@ -8,12 +8,6 @@ import { ILanguageRes } from '../../res/ilanguage-res';
8
8
  * @interface IDEFormDRUIPart
9
9
  */
10
10
  export interface IDEFormDRUIPart extends IDEFormDetail, INavigateParamContainer {
11
- /**
12
- * 实体关系项标记
13
- * @type {string}
14
- * 来源 getDRItemTag
15
- */
16
- dritemTag?: string;
17
11
  /**
18
12
  * 自定义遮罩信息
19
13
  * @type {string}
@@ -37,4 +37,11 @@ export interface IAppMenu extends IAjaxControl, IAppMenuModel, ILayoutContainer
37
37
  * 来源 getPSAppMenuItems
38
38
  */
39
39
  appMenuItems?: IAppMenuItem[];
40
+ /**
41
+ * 支持自定义
42
+ * @type {boolean}
43
+ * @default false
44
+ * 来源 isEnableCustomized
45
+ */
46
+ enableCustomized?: boolean;
40
47
  }
@@ -32,6 +32,13 @@ export interface IDETreeNodeDataItem extends IDataItem {
32
32
  * 来源 getPSAppDEField
33
33
  */
34
34
  appDEFieldId?: string;
35
+ /**
36
+ * 树视图列
37
+ *
38
+ * @type {string}
39
+ * 来源 getPSDETreeColumn
40
+ */
41
+ detreeColumnId?: string;
35
42
  /**
36
43
  * 脚本代码
37
44
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.0.27",
3
+ "version": "0.0.29",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -51,6 +51,14 @@ export interface IAppDEMethodDTOField extends IModelObject {
51
51
  */
52
52
  refAppDataEntityId?: string;
53
53
 
54
+ /**
55
+ * 引用应用实体的连接属性
56
+ *
57
+ * @type {string}
58
+ * 来源 getRefPickupPSAppDEField
59
+ */
60
+ refPickupAppDEFieldId?: string;
61
+
54
62
  /**
55
63
  * DTO属性来源类型
56
64
  * @description 值模式 [实体方法DTO对象属性来源类型] {DEFIELD:实体属性、 DEFGROUPDETAIL:实体属性组成员、 DER:实体关系、 DYNAMODELATTR:动态模型属性、 DEACTIONPARAM:实体行为参数、 DEFSEARCHMODE:属性搜索模式、 DEDATASETPARAM:实体数据集参数 }
@@ -242,6 +242,15 @@ export interface IApplication extends IModelObject {
242
242
  */
243
243
  codeName?: string;
244
244
 
245
+ /**
246
+ * 动态系统模式
247
+ * @description 值模式 [动态系统模式] {0:不启用、 1:启用 }
248
+ * @type {( number | 0 | 1)}
249
+ * @default 0
250
+ * 来源 getDynaSysMode
251
+ */
252
+ dynaSysMode?: number | 0 | 1;
253
+
245
254
  /**
246
255
  * 模型引擎版本
247
256
  * @type {number}
@@ -55,6 +55,15 @@ export interface IAppView extends IControlContainer {
55
55
  */
56
56
  codeName?: string;
57
57
 
58
+ /**
59
+ * 动态系统模式
60
+ * @description 值模式 [动态系统模式] {0:不启用、 1:启用 }
61
+ * @type {( number | 0 | 1)}
62
+ * @default 0
63
+ * 来源 getDynaSysMode
64
+ */
65
+ dynaSysMode?: number | 0 | 1;
66
+
58
67
  /**
59
68
  * 视图高度
60
69
  * @type {number}
@@ -45,6 +45,15 @@ export interface ICodeList extends IModelObject {
45
45
  */
46
46
  customCond?: string;
47
47
 
48
+ /**
49
+ * 动态系统模式
50
+ * @description 值模式 [动态系统模式] {0:不启用、 1:启用 }
51
+ * @type {( number | 0 | 1)}
52
+ * @default 0
53
+ * 来源 getDynaSysMode
54
+ */
55
+ dynaSysMode?: number | 0 | 1;
56
+
48
57
  /**
49
58
  * 空白显示文本
50
59
  * @type {string}
@@ -11,13 +11,6 @@ import { ILanguageRes } from '../../res/ilanguage-res';
11
11
  export interface IDEFormDRUIPart
12
12
  extends IDEFormDetail,
13
13
  INavigateParamContainer {
14
- /**
15
- * 实体关系项标记
16
- * @type {string}
17
- * 来源 getDRItemTag
18
- */
19
- dritemTag?: string;
20
-
21
14
  /**
22
15
  * 自定义遮罩信息
23
16
  * @type {string}
@@ -65,4 +65,12 @@ export interface IAppMenu
65
65
  * 来源 getPSAppMenuItems
66
66
  */
67
67
  appMenuItems?: IAppMenuItem[];
68
+
69
+ /**
70
+ * 支持自定义
71
+ * @type {boolean}
72
+ * @default false
73
+ * 来源 isEnableCustomized
74
+ */
75
+ enableCustomized?: boolean;
68
76
  }
@@ -37,6 +37,14 @@ export interface IDETreeNodeDataItem extends IDataItem {
37
37
  */
38
38
  appDEFieldId?: string;
39
39
 
40
+ /**
41
+ * 树视图列
42
+ *
43
+ * @type {string}
44
+ * 来源 getPSDETreeColumn
45
+ */
46
+ detreeColumnId?: string;
47
+
40
48
  /**
41
49
  * 脚本代码
42
50
  * @type {string}