@ibiz/model-core 0.1.25 → 0.1.26

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.
@@ -19,11 +19,11 @@ import { ISysImage } from '../../res/isys-image';
19
19
  export interface IAppView extends IControlContainer {
20
20
  /**
21
21
  * 访问用户模式
22
- * @description 值模式 [视图访问用户] {0:未指定、 2:登录用户、 3:匿名用户及登录用户、 4:登录用户且拥有指定资源能力 }
23
- * @type {( number | 0 | 2 | 3 | 4)}
22
+ * @description 值模式 [视图访问用户] {0:未指定、 1:未登录用户、 2:登录用户、 3:未登录用户及登录用户、 4:登录用户且拥有指定资源能力 }
23
+ * @type {( number | 0 | 1 | 2 | 3 | 4)}
24
24
  * 来源 getAccUserMode
25
25
  */
26
- accUserMode?: number | 0 | 2 | 3 | 4;
26
+ accUserMode?: number | 0 | 1 | 2 | 3 | 4;
27
27
  /**
28
28
  * 访问标识
29
29
  * @type {string}
@@ -54,4 +54,17 @@ export interface IDEDRCtrlItem extends IControlItem, INavigateParamContainer {
54
54
  * 来源 getPSSysImage
55
55
  */
56
56
  sysImage?: ISysImage;
57
+ /**
58
+ * 启用判断实体逻辑
59
+ *
60
+ * @type {string}
61
+ * 来源 getTestPSAppDELogic
62
+ */
63
+ testAppDELogicId?: string;
64
+ /**
65
+ * 启用判断脚本
66
+ * @type {string}
67
+ * 来源 getTestScriptCode
68
+ */
69
+ testScriptCode?: string;
57
70
  }
@@ -8,11 +8,11 @@ import { ILanguageRes } from '../../res/ilanguage-res';
8
8
  export interface IMenuItem extends IControlItem {
9
9
  /**
10
10
  * 访问用户模式
11
- * @description 值模式 [视图访问用户] {0:未指定、 2:登录用户、 3:匿名用户及登录用户、 4:登录用户且拥有指定资源能力 }
12
- * @type {( number | 0 | 2 | 3 | 4)}
11
+ * @description 值模式 [视图访问用户] {0:未指定、 1:未登录用户、 2:登录用户、 3:未登录用户及登录用户、 4:登录用户且拥有指定资源能力 }
12
+ * @type {( number | 0 | 1 | 2 | 3 | 4)}
13
13
  * 来源 getAccUserMode
14
14
  */
15
- accUserMode?: number | 0 | 2 | 3 | 4;
15
+ accUserMode?: number | 0 | 1 | 2 | 3 | 4;
16
16
  /**
17
17
  * 访问标识
18
18
  * @type {string}
@@ -20,12 +20,12 @@ import { ISysImage } from '../../res/isys-image';
20
20
  export interface IDETreeNode extends IControlItem, IControlXDataContainer, IControlMDataContainer, IControlObjectNavigatable {
21
21
  /**
22
22
  * 访问用户模式
23
- * @description 值模式 [视图访问用户] {0:未指定、 2:登录用户、 3:匿名用户及登录用户、 4:登录用户且拥有指定资源能力 }
24
- * @type {( number | 0 | 2 | 3 | 4)}
23
+ * @description 值模式 [视图访问用户] {0:未指定、 1:未登录用户、 2:登录用户、 3:未登录用户及登录用户、 4:登录用户且拥有指定资源能力 }
24
+ * @type {( number | 0 | 1 | 2 | 3 | 4)}
25
25
  * @default 0
26
26
  * 来源 getAccUserMode
27
27
  */
28
- accUserMode?: number | 0 | 2 | 3 | 4;
28
+ accUserMode?: number | 0 | 1 | 2 | 3 | 4;
29
29
  /**
30
30
  * 访问标识
31
31
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -20,11 +20,11 @@ import { ISysImage } from '../../res/isys-image';
20
20
  export interface IAppView extends IControlContainer {
21
21
  /**
22
22
  * 访问用户模式
23
- * @description 值模式 [视图访问用户] {0:未指定、 2:登录用户、 3:匿名用户及登录用户、 4:登录用户且拥有指定资源能力 }
24
- * @type {( number | 0 | 2 | 3 | 4)}
23
+ * @description 值模式 [视图访问用户] {0:未指定、 1:未登录用户、 2:登录用户、 3:未登录用户及登录用户、 4:登录用户且拥有指定资源能力 }
24
+ * @type {( number | 0 | 1 | 2 | 3 | 4)}
25
25
  * 来源 getAccUserMode
26
26
  */
27
- accUserMode?: number | 0 | 2 | 3 | 4;
27
+ accUserMode?: number | 0 | 1 | 2 | 3 | 4;
28
28
 
29
29
  /**
30
30
  * 访问标识
@@ -68,4 +68,19 @@ export interface IDEDRCtrlItem extends IControlItem, INavigateParamContainer {
68
68
  * 来源 getPSSysImage
69
69
  */
70
70
  sysImage?: ISysImage;
71
+
72
+ /**
73
+ * 启用判断实体逻辑
74
+ *
75
+ * @type {string}
76
+ * 来源 getTestPSAppDELogic
77
+ */
78
+ testAppDELogicId?: string;
79
+
80
+ /**
81
+ * 启用判断脚本
82
+ * @type {string}
83
+ * 来源 getTestScriptCode
84
+ */
85
+ testScriptCode?: string;
71
86
  }
@@ -9,11 +9,11 @@ import { ILanguageRes } from '../../res/ilanguage-res';
9
9
  export interface IMenuItem extends IControlItem {
10
10
  /**
11
11
  * 访问用户模式
12
- * @description 值模式 [视图访问用户] {0:未指定、 2:登录用户、 3:匿名用户及登录用户、 4:登录用户且拥有指定资源能力 }
13
- * @type {( number | 0 | 2 | 3 | 4)}
12
+ * @description 值模式 [视图访问用户] {0:未指定、 1:未登录用户、 2:登录用户、 3:未登录用户及登录用户、 4:登录用户且拥有指定资源能力 }
13
+ * @type {( number | 0 | 1 | 2 | 3 | 4)}
14
14
  * 来源 getAccUserMode
15
15
  */
16
- accUserMode?: number | 0 | 2 | 3 | 4;
16
+ accUserMode?: number | 0 | 1 | 2 | 3 | 4;
17
17
 
18
18
  /**
19
19
  * 访问标识
@@ -25,12 +25,12 @@ export interface IDETreeNode
25
25
  IControlObjectNavigatable {
26
26
  /**
27
27
  * 访问用户模式
28
- * @description 值模式 [视图访问用户] {0:未指定、 2:登录用户、 3:匿名用户及登录用户、 4:登录用户且拥有指定资源能力 }
29
- * @type {( number | 0 | 2 | 3 | 4)}
28
+ * @description 值模式 [视图访问用户] {0:未指定、 1:未登录用户、 2:登录用户、 3:未登录用户及登录用户、 4:登录用户且拥有指定资源能力 }
29
+ * @type {( number | 0 | 1 | 2 | 3 | 4)}
30
30
  * @default 0
31
31
  * 来源 getAccUserMode
32
32
  */
33
- accUserMode?: number | 0 | 2 | 3 | 4;
33
+ accUserMode?: number | 0 | 1 | 2 | 3 | 4;
34
34
 
35
35
  /**
36
36
  * 访问标识