@ibiz/model-core 0.0.25 → 0.0.27

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,18 @@
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.0.27] - 2023-12-11
11
+
12
+ ### Added
13
+
14
+ - 应用实体支持联合主键 unionKeyValueAppDEFieldIds
15
+
16
+ ## [0.0.26] - 2023-12-06
17
+
18
+ ### Changed
19
+
20
+ - 模型中 appId 改为非可选项
21
+
10
22
  ## [0.0.25] - 2023-12-06
11
23
 
12
24
  ### Added
@@ -293,6 +293,13 @@ export interface IAppDataEntity extends IModelObject {
293
293
  * 来源 getSysAPITag
294
294
  */
295
295
  sysAPITag?: string;
296
+ /**
297
+ * 联合键值属性集合
298
+ *
299
+ * @type {string[]}
300
+ * 来源 getUnionKeyValuePSAppDEFields
301
+ */
302
+ unionKeyValueAppDEFieldIds?: string[];
296
303
  /**
297
304
  * 实体默认
298
305
  * @type {boolean}
@@ -6,7 +6,7 @@ export interface IModelObject {
6
6
  * @date 2023-04-19 22:04:16
7
7
  * @type {string}
8
8
  */
9
- appId?: string;
9
+ appId: string;
10
10
  id?: string;
11
11
  name?: string;
12
12
  codeName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.0.25",
3
+ "version": "0.0.27",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -334,6 +334,14 @@ export interface IAppDataEntity extends IModelObject {
334
334
  */
335
335
  sysAPITag?: string;
336
336
 
337
+ /**
338
+ * 联合键值属性集合
339
+ *
340
+ * @type {string[]}
341
+ * 来源 getUnionKeyValuePSAppDEFields
342
+ */
343
+ unionKeyValueAppDEFieldIds?: string[];
344
+
337
345
  /**
338
346
  * 实体默认
339
347
  * @type {boolean}
@@ -6,7 +6,7 @@ export interface IModelObject {
6
6
  * @date 2023-04-19 22:04:16
7
7
  * @type {string}
8
8
  */
9
- appId?: string;
9
+ appId: string;
10
10
 
11
11
  id?: string;
12
12