@ibiz/model-core 0.1.78 → 0.1.79

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.79] - 2025-07-11
9
+
10
+ ### Added
11
+
12
+ - 应用实体数据导出模型对象新增应用实体数据集合
13
+
8
14
  ## [0.1.78] - 2025-07-01
9
15
 
10
16
  ### Added
@@ -5,4 +5,12 @@ import { IDEDataExport } from '../../dataentity/dataexport/idedata-export';
5
5
  * @export
6
6
  * @interface IAppDEDataExport
7
7
  */
8
- export type IAppDEDataExport = IDEDataExport;
8
+ export interface IAppDEDataExport extends IDEDataExport {
9
+ /**
10
+ * 应用实体数据集合
11
+ *
12
+ * @type {string}
13
+ * 来源 getPSAppDEDataSet
14
+ */
15
+ appDEDataSetId?: string;
16
+ }
@@ -8,7 +8,7 @@ import { IModelObject } from '../../imodel-object';
8
8
  */
9
9
  export interface ILayoutContainer extends IModelObject {
10
10
  /**
11
- * 看板布局
11
+ * 菜单布局对象
12
12
  *
13
13
  * @type {ILayout}
14
14
  * 来源 getPSLayout
@@ -13,6 +13,12 @@ export interface IDEDataExport extends IModelObject {
13
13
  * 来源 getCodeName
14
14
  */
15
15
  codeName?: string;
16
+ /**
17
+ * 内容类型
18
+ * @type {string}
19
+ * 来源 getContentType
20
+ */
21
+ contentType?: string;
16
22
  /**
17
23
  * 导入标记
18
24
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.78",
3
+ "version": "0.1.79",
4
4
  "license": "MIT",
5
5
  "description": "iBiz网页端模型接口",
6
6
  "author": "iBiz",
@@ -6,4 +6,12 @@ import { IDEDataExport } from '../../dataentity/dataexport/idedata-export';
6
6
  * @export
7
7
  * @interface IAppDEDataExport
8
8
  */
9
- export type IAppDEDataExport = IDEDataExport;
9
+ export interface IAppDEDataExport extends IDEDataExport {
10
+ /**
11
+ * 应用实体数据集合
12
+ *
13
+ * @type {string}
14
+ * 来源 getPSAppDEDataSet
15
+ */
16
+ appDEDataSetId?: string;
17
+ }
@@ -9,7 +9,7 @@ import { IModelObject } from '../../imodel-object';
9
9
  */
10
10
  export interface ILayoutContainer extends IModelObject {
11
11
  /**
12
- * 看板布局
12
+ * 菜单布局对象
13
13
  *
14
14
  * @type {ILayout}
15
15
  * 来源 getPSLayout
@@ -15,6 +15,13 @@ export interface IDEDataExport extends IModelObject {
15
15
  */
16
16
  codeName?: string;
17
17
 
18
+ /**
19
+ * 内容类型
20
+ * @type {string}
21
+ * 来源 getContentType
22
+ */
23
+ contentType?: string;
24
+
18
25
  /**
19
26
  * 导入标记
20
27
  * @type {string}