@ibiz/model-core 0.1.8 → 0.1.9
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/imodel-object.d.ts +16 -0
- package/package.json +1 -1
- package/src/imodel-object.ts +18 -0
package/CHANGELOG.md
CHANGED
package/out/imodel-object.d.ts
CHANGED
|
@@ -11,4 +11,20 @@ export interface IModelObject {
|
|
|
11
11
|
name?: string;
|
|
12
12
|
codeName?: string;
|
|
13
13
|
userParam?: Record<string, string>;
|
|
14
|
+
/**
|
|
15
|
+
* 平台模型标识(只开发态生效)
|
|
16
|
+
*
|
|
17
|
+
* @author chitanda
|
|
18
|
+
* @date 2024-01-29 12:01:38
|
|
19
|
+
* @type {string}
|
|
20
|
+
*/
|
|
21
|
+
modelId?: string;
|
|
22
|
+
/**
|
|
23
|
+
* 平台模型类型(只开发态生效)
|
|
24
|
+
*
|
|
25
|
+
* @author chitanda
|
|
26
|
+
* @date 2024-01-29 12:01:55
|
|
27
|
+
* @type {string}
|
|
28
|
+
*/
|
|
29
|
+
modelType?: string;
|
|
14
30
|
}
|
package/package.json
CHANGED
package/src/imodel-object.ts
CHANGED
|
@@ -15,4 +15,22 @@ export interface IModelObject {
|
|
|
15
15
|
codeName?: string;
|
|
16
16
|
|
|
17
17
|
userParam?: Record<string, string>;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* 平台模型标识(只开发态生效)
|
|
21
|
+
*
|
|
22
|
+
* @author chitanda
|
|
23
|
+
* @date 2024-01-29 12:01:38
|
|
24
|
+
* @type {string}
|
|
25
|
+
*/
|
|
26
|
+
modelId?: string;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* 平台模型类型(只开发态生效)
|
|
30
|
+
*
|
|
31
|
+
* @author chitanda
|
|
32
|
+
* @date 2024-01-29 12:01:55
|
|
33
|
+
* @type {string}
|
|
34
|
+
*/
|
|
35
|
+
modelType?: string;
|
|
18
36
|
}
|