@ibiz/model-core 0.1.36 → 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.
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.36",
3
+ "version": "0.1.37",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -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
  }