@ibiz/model-core 0.1.75 → 0.1.76

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
@@ -5,6 +5,12 @@
5
5
  此日志格式基于 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.0.0/),
6
6
  并且此项目遵循 [Semantic Versioning](https://semver.org/lang/zh-CN/).
7
7
 
8
+ ## [0.1.76] - 2025-06-09
9
+
10
+ ### Added
11
+
12
+ - 应用实体方法DTO属性对象新增引用应用实体的嵌套数据集
13
+
8
14
  ## [0.1.75] - 2025-05-26
9
15
 
10
16
  ### Added
@@ -31,6 +31,13 @@ export interface IAppDEMethodDTOField extends IModelObject {
31
31
  * 来源 getPSAppDEField
32
32
  */
33
33
  appDEFieldId?: string;
34
+ /**
35
+ * 引用应用实体的嵌套数据集
36
+ *
37
+ * @type {string}
38
+ * 来源 getRefPSAppDEDataSet
39
+ */
40
+ refAppDEDataSetId?: string;
34
41
  /**
35
42
  * 引用应用实体方法DTO对象
36
43
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.75",
3
+ "version": "0.1.76",
4
4
  "license": "MIT",
5
5
  "description": "iBiz网页端模型接口",
6
6
  "author": "iBiz",
@@ -36,6 +36,14 @@ export interface IAppDEMethodDTOField extends IModelObject {
36
36
  */
37
37
  appDEFieldId?: string;
38
38
 
39
+ /**
40
+ * 引用应用实体的嵌套数据集
41
+ *
42
+ * @type {string}
43
+ * 来源 getRefPSAppDEDataSet
44
+ */
45
+ refAppDEDataSetId?: string;
46
+
39
47
  /**
40
48
  * 引用应用实体方法DTO对象
41
49
  *