@ibiz/model-core 0.1.35 → 0.1.37
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/out/app/isub-app-ref.d.ts +18 -0
- package/out/control/drctrl/idedrctrl-item.d.ts +12 -0
- package/out/dataentity/der/ider1-n.d.ts +3 -3
- package/package.json +1 -1
- package/src/app/isub-app-ref.ts +21 -0
- package/src/control/drctrl/idedrctrl-item.ts +14 -0
- package/src/dataentity/der/ider1-n.ts +3 -2
|
@@ -40,4 +40,22 @@ export interface ISubAppRef extends IModelObject {
|
|
|
40
40
|
* 来源 getPSAppMenuModel
|
|
41
41
|
*/
|
|
42
42
|
appMenuModel?: IAppMenuModel;
|
|
43
|
+
/**
|
|
44
|
+
* 引用参数
|
|
45
|
+
* @type {string}
|
|
46
|
+
* 来源 getRefParam
|
|
47
|
+
*/
|
|
48
|
+
refParam?: string;
|
|
49
|
+
/**
|
|
50
|
+
* 引用参数2
|
|
51
|
+
* @type {string}
|
|
52
|
+
* 来源 getRefParam2
|
|
53
|
+
*/
|
|
54
|
+
refParam2?: string;
|
|
55
|
+
/**
|
|
56
|
+
* 应用服务标识
|
|
57
|
+
* @type {string}
|
|
58
|
+
* 来源 getServiceId
|
|
59
|
+
*/
|
|
60
|
+
serviceId?: string;
|
|
43
61
|
}
|
|
@@ -48,6 +48,18 @@ export interface IDEDRCtrlItem extends IControlItem, INavigateParamContainer {
|
|
|
48
48
|
* 来源 getEnableMode
|
|
49
49
|
*/
|
|
50
50
|
enableMode?: string | 'ALL' | 'INWF' | 'ALLWF' | 'EDIT' | 'DEOPPRIV' | 'DELOGIC' | 'SCRIPT' | 'COUNT_GTE_ZERO' | 'COUNT_GT_ZERO' | 'CUSTOM';
|
|
51
|
+
/**
|
|
52
|
+
* 项标记
|
|
53
|
+
* @type {string}
|
|
54
|
+
* 来源 getItemTag
|
|
55
|
+
*/
|
|
56
|
+
itemTag?: string;
|
|
57
|
+
/**
|
|
58
|
+
* 项标记2
|
|
59
|
+
* @type {string}
|
|
60
|
+
* 来源 getItemTag2
|
|
61
|
+
*/
|
|
62
|
+
itemTag2?: string;
|
|
51
63
|
/**
|
|
52
64
|
* 关联视图
|
|
53
65
|
*
|
|
@@ -45,11 +45,11 @@ export interface IDER1N extends IDERBase, IDER1NBase {
|
|
|
45
45
|
masterOrder?: number;
|
|
46
46
|
/**
|
|
47
47
|
* 主从关系类型
|
|
48
|
-
* @description 值模式 [实体1:N关系主从关系类型] {1:附属关系、 2:附属关系(N:N连接)、 4:数据访问控制、 8:嵌套操作、 16:递归关系、 32:关联通知、 64:附属扩展、 128:限定版本、 1048576:自定义、 2097152:自定义2、 4194304:自定义3、 8388608:自定义4 }
|
|
49
|
-
* @type {( number | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 1048576 | 2097152 | 4194304 | 8388608)}
|
|
48
|
+
* @description 值模式 [实体1:N关系主从关系类型] {1:附属关系、 2:附属关系(N:N连接)、 4:数据访问控制、 8:嵌套操作、 16:递归关系、 32:关联通知、 64:附属扩展、 128:限定版本、 256:引用检查、 1048576:自定义、 2097152:自定义2、 4194304:自定义3、 8388608:自定义4 }
|
|
49
|
+
* @type {( number | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 1048576 | 2097152 | 4194304 | 8388608)}
|
|
50
50
|
* 来源 getMasterRS
|
|
51
51
|
*/
|
|
52
|
-
masterRS?: number | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 1048576 | 2097152 | 4194304 | 8388608;
|
|
52
|
+
masterRS?: number | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 1048576 | 2097152 | 4194304 | 8388608;
|
|
53
53
|
/**
|
|
54
54
|
* 关系属性名称
|
|
55
55
|
* @type {string}
|
package/package.json
CHANGED
package/src/app/isub-app-ref.ts
CHANGED
|
@@ -45,4 +45,25 @@ export interface ISubAppRef extends IModelObject {
|
|
|
45
45
|
* 来源 getPSAppMenuModel
|
|
46
46
|
*/
|
|
47
47
|
appMenuModel?: IAppMenuModel;
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* 引用参数
|
|
51
|
+
* @type {string}
|
|
52
|
+
* 来源 getRefParam
|
|
53
|
+
*/
|
|
54
|
+
refParam?: string;
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* 引用参数2
|
|
58
|
+
* @type {string}
|
|
59
|
+
* 来源 getRefParam2
|
|
60
|
+
*/
|
|
61
|
+
refParam2?: string;
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* 应用服务标识
|
|
65
|
+
* @type {string}
|
|
66
|
+
* 来源 getServiceId
|
|
67
|
+
*/
|
|
68
|
+
serviceId?: string;
|
|
48
69
|
}
|
|
@@ -66,6 +66,20 @@ export interface IDEDRCtrlItem extends IControlItem, INavigateParamContainer {
|
|
|
66
66
|
| 'COUNT_GT_ZERO'
|
|
67
67
|
| 'CUSTOM';
|
|
68
68
|
|
|
69
|
+
/**
|
|
70
|
+
* 项标记
|
|
71
|
+
* @type {string}
|
|
72
|
+
* 来源 getItemTag
|
|
73
|
+
*/
|
|
74
|
+
itemTag?: string;
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* 项标记2
|
|
78
|
+
* @type {string}
|
|
79
|
+
* 来源 getItemTag2
|
|
80
|
+
*/
|
|
81
|
+
itemTag2?: string;
|
|
82
|
+
|
|
69
83
|
/**
|
|
70
84
|
* 关联视图
|
|
71
85
|
*
|
|
@@ -51,8 +51,8 @@ export interface IDER1N extends IDERBase, IDER1NBase {
|
|
|
51
51
|
|
|
52
52
|
/**
|
|
53
53
|
* 主从关系类型
|
|
54
|
-
* @description 值模式 [实体1:N关系主从关系类型] {1:附属关系、 2:附属关系(N:N连接)、 4:数据访问控制、 8:嵌套操作、 16:递归关系、 32:关联通知、 64:附属扩展、 128:限定版本、 1048576:自定义、 2097152:自定义2、 4194304:自定义3、 8388608:自定义4 }
|
|
55
|
-
* @type {( number | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 1048576 | 2097152 | 4194304 | 8388608)}
|
|
54
|
+
* @description 值模式 [实体1:N关系主从关系类型] {1:附属关系、 2:附属关系(N:N连接)、 4:数据访问控制、 8:嵌套操作、 16:递归关系、 32:关联通知、 64:附属扩展、 128:限定版本、 256:引用检查、 1048576:自定义、 2097152:自定义2、 4194304:自定义3、 8388608:自定义4 }
|
|
55
|
+
* @type {( number | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 1048576 | 2097152 | 4194304 | 8388608)}
|
|
56
56
|
* 来源 getMasterRS
|
|
57
57
|
*/
|
|
58
58
|
masterRS?:
|
|
@@ -65,6 +65,7 @@ export interface IDER1N extends IDERBase, IDER1NBase {
|
|
|
65
65
|
| 32
|
|
66
66
|
| 64
|
|
67
67
|
| 128
|
|
68
|
+
| 256
|
|
68
69
|
| 1048576
|
|
69
70
|
| 2097152
|
|
70
71
|
| 4194304
|