@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 +6 -0
- package/out/app/dataentity/iapp-dedata-export.d.ts +9 -1
- package/out/control/layout/ilayout-container.d.ts +1 -1
- package/out/dataentity/dataexport/idedata-export.d.ts +6 -0
- package/package.json +1 -1
- package/src/app/dataentity/iapp-dedata-export.ts +9 -1
- package/src/control/layout/ilayout-container.ts +1 -1
- package/src/dataentity/dataexport/idedata-export.ts +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,4 +5,12 @@ import { IDEDataExport } from '../../dataentity/dataexport/idedata-export';
|
|
|
5
5
|
* @export
|
|
6
6
|
* @interface IAppDEDataExport
|
|
7
7
|
*/
|
|
8
|
-
export
|
|
8
|
+
export interface IAppDEDataExport extends IDEDataExport {
|
|
9
|
+
/**
|
|
10
|
+
* 应用实体数据集合
|
|
11
|
+
*
|
|
12
|
+
* @type {string}
|
|
13
|
+
* 来源 getPSAppDEDataSet
|
|
14
|
+
*/
|
|
15
|
+
appDEDataSetId?: string;
|
|
16
|
+
}
|
package/package.json
CHANGED
|
@@ -6,4 +6,12 @@ import { IDEDataExport } from '../../dataentity/dataexport/idedata-export';
|
|
|
6
6
|
* @export
|
|
7
7
|
* @interface IAppDEDataExport
|
|
8
8
|
*/
|
|
9
|
-
export
|
|
9
|
+
export interface IAppDEDataExport extends IDEDataExport {
|
|
10
|
+
/**
|
|
11
|
+
* 应用实体数据集合
|
|
12
|
+
*
|
|
13
|
+
* @type {string}
|
|
14
|
+
* 来源 getPSAppDEDataSet
|
|
15
|
+
*/
|
|
16
|
+
appDEDataSetId?: string;
|
|
17
|
+
}
|