@ibiz/model-core 0.1.13 → 0.1.15

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.
@@ -1,4 +1,5 @@
1
1
  import { IAppUIAction } from '../view/iapp-uiaction';
2
+ import { IDEEditForm } from '../../control/form/ideedit-form';
2
3
  import { IDEUIAction } from '../../dataentity/uiaction/ideuiaction';
3
4
  /**
4
5
  *
@@ -77,4 +78,11 @@ export interface IAppDEUIAction extends IDEUIAction, IAppUIAction {
77
78
  * 来源 getPSAppUILogic
78
79
  */
79
80
  appUILogicId?: string;
81
+ /**
82
+ * 编辑表单
83
+ *
84
+ * @type {IDEEditForm}
85
+ * 来源 getPSDEEditForm
86
+ */
87
+ deeditForm?: IDEEditForm;
80
88
  }
@@ -17,6 +17,7 @@ import { IAppViewMsg } from './view/iapp-view-msg';
17
17
  import { IAppViewMsgGroup } from './view/iapp-view-msg-group';
18
18
  import { IAppWF } from './wf/iapp-wf';
19
19
  import { IDEOPPriv } from '../dataentity/priv/ideoppriv';
20
+ import { ISysImage } from '../res/isys-image';
20
21
  import { IModelObject } from '../imodel-object';
21
22
  /**
22
23
  *
@@ -199,19 +200,24 @@ export interface IApplication extends IModelObject {
199
200
  * 来源 getAppVersion
200
201
  */
201
202
  appVersion?: string;
203
+ /**
204
+ * 应用下方信息
205
+ * @type {string}
206
+ * 来源 getBottomInfo
207
+ */
208
+ bottomInfo?: string;
209
+ /**
210
+ * 应用标题
211
+ * @type {string}
212
+ * 来源 getCaption
213
+ */
214
+ caption?: string;
202
215
  /**
203
216
  * 代码标识
204
217
  * @type {string}
205
218
  * 来源 getCodeName
206
219
  */
207
220
  codeName?: string;
208
- /**
209
- * 模型代码标识模式
210
- * @description 值模式 [代码标识格式] {LOWER_UNDERSCORE:小写(下划线分隔)、 UPPER_UNDERSCORE:大写(下划线分隔)、 LOWER_CAMEL:驼峰(首字母小写)、 UPPER_CAMEL:驼峰(首字母大写)、 LOWER_HYPHEN:小写(中划线分隔) }
211
- * @type {( string | 'LOWER_UNDERSCORE' | 'UPPER_UNDERSCORE' | 'LOWER_CAMEL' | 'UPPER_CAMEL' | 'LOWER_HYPHEN')}
212
- * 来源 getCodeNameMode
213
- */
214
- codeNameMode?: string | 'LOWER_UNDERSCORE' | 'UPPER_UNDERSCORE' | 'LOWER_CAMEL' | 'UPPER_CAMEL' | 'LOWER_HYPHEN';
215
221
  /**
216
222
  * 默认对象存储分类
217
223
  * @type {string}
@@ -232,6 +238,12 @@ export interface IApplication extends IModelObject {
232
238
  * 来源 getEngineVer
233
239
  */
234
240
  engineVer?: number;
241
+ /**
242
+ * 应用头部信息
243
+ * @type {string}
244
+ * 来源 getHeaderInfo
245
+ */
246
+ headerInfo?: string;
235
247
  /**
236
248
  * 前端模板样式
237
249
  * @type {string}
@@ -257,18 +269,44 @@ export interface IApplication extends IModelObject {
257
269
  * 来源 getPSApplicationLogics
258
270
  */
259
271
  applicationLogics?: IApplicationLogic[];
272
+ /**
273
+ * 应用默认图标
274
+ *
275
+ * @type {ISysImage}
276
+ * 来源 getPSSysImage
277
+ */
278
+ sysImage?: ISysImage;
260
279
  /**
261
280
  * 服务代码名称
262
281
  * @type {string}
263
282
  * 来源 getServiceCodeName
264
283
  */
265
284
  serviceCodeName?: string;
285
+ /**
286
+ * 应用子标题
287
+ * @type {string}
288
+ * 来源 getSubCaption
289
+ */
290
+ subCaption?: string;
266
291
  /**
267
292
  * 系统代码标识
268
293
  * @type {string}
269
294
  * 来源 getSysCodeName
270
295
  */
271
296
  sysCodeName?: string;
297
+ /**
298
+ * 应用抬头
299
+ * @type {string}
300
+ * 来源 getTitle
301
+ */
302
+ title?: string;
303
+ /**
304
+ * 视图代码标识模式
305
+ * @description 值模式 [代码标识格式] {LOWER_UNDERSCORE:小写(下划线分隔)、 UPPER_UNDERSCORE:大写(下划线分隔)、 LOWER_CAMEL:驼峰(首字母小写)、 UPPER_CAMEL:驼峰(首字母大写)、 LOWER:小写(直接,不做转换)、 UPPER:大写(直接,不做转换)、 LOWER_HYPHEN:小写(中划线分隔)、 NONE:无转换 }
306
+ * @type {( string | 'LOWER_UNDERSCORE' | 'UPPER_UNDERSCORE' | 'LOWER_CAMEL' | 'UPPER_CAMEL' | 'LOWER' | 'UPPER' | 'LOWER_HYPHEN' | 'NONE')}
307
+ * 来源 getViewCodeNameMode
308
+ */
309
+ viewCodeNameMode?: string | 'LOWER_UNDERSCORE' | 'UPPER_UNDERSCORE' | 'LOWER_CAMEL' | 'UPPER_CAMEL' | 'LOWER' | 'UPPER' | 'LOWER_HYPHEN' | 'NONE';
272
310
  /**
273
311
  * 启用服务接口DTO
274
312
  * @type {boolean}
@@ -76,11 +76,11 @@ export interface IUIAction extends INavigateParamContainer {
76
76
  frontAppViewId?: string;
77
77
  /**
78
78
  * 前台处理类型
79
- * @description 值模式 [云实体界面行为_前台处理类型] {WIZARD:打开视图或向导(模态)、 TOP:打开顶级视图、 PRINT:打开打印视图、 DATAIMP:打开数据导入视图、 DATAEXP:打开数据导出视图、 CHAT:打开聊天界面、 OPENHTMLPAGE:打开HTML页面、 OTHER:用户自定义 }
80
- * @type {( string | 'WIZARD' | 'TOP' | 'PRINT' | 'DATAIMP' | 'DATAEXP' | 'CHAT' | 'OPENHTMLPAGE' | 'OTHER')}
79
+ * @description 值模式 [云实体界面行为_前台处理类型] {WIZARD:打开视图或向导(模态)、 TOP:打开顶级视图、 PRINT:打开打印视图、 DATAIMP:打开数据导入视图、 DATAEXP:打开数据导出视图、 CHAT:打开聊天界面、 OPENHTMLPAGE:打开HTML页面、 EDITFORM:打开编辑表单、 QUICKEDIT:打开快捷编辑、 OTHER:用户自定义 }
80
+ * @type {( string | 'WIZARD' | 'TOP' | 'PRINT' | 'DATAIMP' | 'DATAEXP' | 'CHAT' | 'OPENHTMLPAGE' | 'EDITFORM' | 'QUICKEDIT' | 'OTHER')}
81
81
  * 来源 getFrontProcessType
82
82
  */
83
- frontProcessType?: string | 'WIZARD' | 'TOP' | 'PRINT' | 'DATAIMP' | 'DATAEXP' | 'CHAT' | 'OPENHTMLPAGE' | 'OTHER';
83
+ frontProcessType?: string | 'WIZARD' | 'TOP' | 'PRINT' | 'DATAIMP' | 'DATAEXP' | 'CHAT' | 'OPENHTMLPAGE' | 'EDITFORM' | 'QUICKEDIT' | 'OTHER';
84
84
  /**
85
85
  * 完全代码标识
86
86
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -1,4 +1,5 @@
1
1
  import { IAppUIAction } from '../view/iapp-uiaction';
2
+ import { IDEEditForm } from '../../control/form/ideedit-form';
2
3
  import { IDEUIAction } from '../../dataentity/uiaction/ideuiaction';
3
4
 
4
5
  /**
@@ -87,4 +88,12 @@ export interface IAppDEUIAction extends IDEUIAction, IAppUIAction {
87
88
  * 来源 getPSAppUILogic
88
89
  */
89
90
  appUILogicId?: string;
91
+
92
+ /**
93
+ * 编辑表单
94
+ *
95
+ * @type {IDEEditForm}
96
+ * 来源 getPSDEEditForm
97
+ */
98
+ deeditForm?: IDEEditForm;
90
99
  }
@@ -17,6 +17,7 @@ import { IAppViewMsg } from './view/iapp-view-msg';
17
17
  import { IAppViewMsgGroup } from './view/iapp-view-msg-group';
18
18
  import { IAppWF } from './wf/iapp-wf';
19
19
  import { IDEOPPriv } from '../dataentity/priv/ideoppriv';
20
+ import { ISysImage } from '../res/isys-image';
20
21
  import { IModelObject } from '../imodel-object';
21
22
 
22
23
  /**
@@ -236,25 +237,25 @@ export interface IApplication extends IModelObject {
236
237
  appVersion?: string;
237
238
 
238
239
  /**
239
- * 代码标识
240
+ * 应用下方信息
240
241
  * @type {string}
241
- * 来源 getCodeName
242
+ * 来源 getBottomInfo
242
243
  */
243
- codeName?: string;
244
+ bottomInfo?: string;
244
245
 
245
246
  /**
246
- * 模型代码标识模式
247
- * @description 值模式 [代码标识格式] {LOWER_UNDERSCORE:小写(下划线分隔)、 UPPER_UNDERSCORE:大写(下划线分隔)、 LOWER_CAMEL:驼峰(首字母小写)、 UPPER_CAMEL:驼峰(首字母大写)、 LOWER_HYPHEN:小写(中划线分隔) }
248
- * @type {( string | 'LOWER_UNDERSCORE' | 'UPPER_UNDERSCORE' | 'LOWER_CAMEL' | 'UPPER_CAMEL' | 'LOWER_HYPHEN')}
249
- * 来源 getCodeNameMode
247
+ * 应用标题
248
+ * @type {string}
249
+ * 来源 getCaption
250
250
  */
251
- codeNameMode?:
252
- | string
253
- | 'LOWER_UNDERSCORE'
254
- | 'UPPER_UNDERSCORE'
255
- | 'LOWER_CAMEL'
256
- | 'UPPER_CAMEL'
257
- | 'LOWER_HYPHEN';
251
+ caption?: string;
252
+
253
+ /**
254
+ * 代码标识
255
+ * @type {string}
256
+ * 来源 getCodeName
257
+ */
258
+ codeName?: string;
258
259
 
259
260
  /**
260
261
  * 默认对象存储分类
@@ -279,6 +280,13 @@ export interface IApplication extends IModelObject {
279
280
  */
280
281
  engineVer?: number;
281
282
 
283
+ /**
284
+ * 应用头部信息
285
+ * @type {string}
286
+ * 来源 getHeaderInfo
287
+ */
288
+ headerInfo?: string;
289
+
282
290
  /**
283
291
  * 前端模板样式
284
292
  * @type {string}
@@ -308,6 +316,14 @@ export interface IApplication extends IModelObject {
308
316
  */
309
317
  applicationLogics?: IApplicationLogic[];
310
318
 
319
+ /**
320
+ * 应用默认图标
321
+ *
322
+ * @type {ISysImage}
323
+ * 来源 getPSSysImage
324
+ */
325
+ sysImage?: ISysImage;
326
+
311
327
  /**
312
328
  * 服务代码名称
313
329
  * @type {string}
@@ -315,6 +331,13 @@ export interface IApplication extends IModelObject {
315
331
  */
316
332
  serviceCodeName?: string;
317
333
 
334
+ /**
335
+ * 应用子标题
336
+ * @type {string}
337
+ * 来源 getSubCaption
338
+ */
339
+ subCaption?: string;
340
+
318
341
  /**
319
342
  * 系统代码标识
320
343
  * @type {string}
@@ -322,6 +345,30 @@ export interface IApplication extends IModelObject {
322
345
  */
323
346
  sysCodeName?: string;
324
347
 
348
+ /**
349
+ * 应用抬头
350
+ * @type {string}
351
+ * 来源 getTitle
352
+ */
353
+ title?: string;
354
+
355
+ /**
356
+ * 视图代码标识模式
357
+ * @description 值模式 [代码标识格式] {LOWER_UNDERSCORE:小写(下划线分隔)、 UPPER_UNDERSCORE:大写(下划线分隔)、 LOWER_CAMEL:驼峰(首字母小写)、 UPPER_CAMEL:驼峰(首字母大写)、 LOWER:小写(直接,不做转换)、 UPPER:大写(直接,不做转换)、 LOWER_HYPHEN:小写(中划线分隔)、 NONE:无转换 }
358
+ * @type {( string | 'LOWER_UNDERSCORE' | 'UPPER_UNDERSCORE' | 'LOWER_CAMEL' | 'UPPER_CAMEL' | 'LOWER' | 'UPPER' | 'LOWER_HYPHEN' | 'NONE')}
359
+ * 来源 getViewCodeNameMode
360
+ */
361
+ viewCodeNameMode?:
362
+ | string
363
+ | 'LOWER_UNDERSCORE'
364
+ | 'UPPER_UNDERSCORE'
365
+ | 'LOWER_CAMEL'
366
+ | 'UPPER_CAMEL'
367
+ | 'LOWER'
368
+ | 'UPPER'
369
+ | 'LOWER_HYPHEN'
370
+ | 'NONE';
371
+
325
372
  /**
326
373
  * 启用服务接口DTO
327
374
  * @type {boolean}
@@ -93,8 +93,8 @@ export interface IUIAction extends INavigateParamContainer {
93
93
 
94
94
  /**
95
95
  * 前台处理类型
96
- * @description 值模式 [云实体界面行为_前台处理类型] {WIZARD:打开视图或向导(模态)、 TOP:打开顶级视图、 PRINT:打开打印视图、 DATAIMP:打开数据导入视图、 DATAEXP:打开数据导出视图、 CHAT:打开聊天界面、 OPENHTMLPAGE:打开HTML页面、 OTHER:用户自定义 }
97
- * @type {( string | 'WIZARD' | 'TOP' | 'PRINT' | 'DATAIMP' | 'DATAEXP' | 'CHAT' | 'OPENHTMLPAGE' | 'OTHER')}
96
+ * @description 值模式 [云实体界面行为_前台处理类型] {WIZARD:打开视图或向导(模态)、 TOP:打开顶级视图、 PRINT:打开打印视图、 DATAIMP:打开数据导入视图、 DATAEXP:打开数据导出视图、 CHAT:打开聊天界面、 OPENHTMLPAGE:打开HTML页面、 EDITFORM:打开编辑表单、 QUICKEDIT:打开快捷编辑、 OTHER:用户自定义 }
97
+ * @type {( string | 'WIZARD' | 'TOP' | 'PRINT' | 'DATAIMP' | 'DATAEXP' | 'CHAT' | 'OPENHTMLPAGE' | 'EDITFORM' | 'QUICKEDIT' | 'OTHER')}
98
98
  * 来源 getFrontProcessType
99
99
  */
100
100
  frontProcessType?:
@@ -106,6 +106,8 @@ export interface IUIAction extends INavigateParamContainer {
106
106
  | 'DATAEXP'
107
107
  | 'CHAT'
108
108
  | 'OPENHTMLPAGE'
109
+ | 'EDITFORM'
110
+ | 'QUICKEDIT'
109
111
  | 'OTHER';
110
112
 
111
113
  /**