@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