@ibiz/model-core 0.1.14 → 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}
|
|
@@ -307,44 +345,4 @@ export interface IApplication extends IModelObject {
|
|
|
307
345
|
* 来源 isWFAppMode
|
|
308
346
|
*/
|
|
309
347
|
wfappMode?: boolean;
|
|
310
|
-
/**
|
|
311
|
-
* 应用下方信息
|
|
312
|
-
*
|
|
313
|
-
* @author chitanda
|
|
314
|
-
* @date 2024-02-04 15:02:20
|
|
315
|
-
* @type {string}
|
|
316
|
-
*/
|
|
317
|
-
bottomInfo?: string;
|
|
318
|
-
/**
|
|
319
|
-
* 应用头部信息
|
|
320
|
-
*
|
|
321
|
-
* @author chitanda
|
|
322
|
-
* @date 2024-02-04 15:02:39
|
|
323
|
-
* @type {string}
|
|
324
|
-
*/
|
|
325
|
-
headerInfo?: string;
|
|
326
|
-
/**
|
|
327
|
-
* 应用抬头
|
|
328
|
-
*
|
|
329
|
-
* @author chitanda
|
|
330
|
-
* @date 2024-02-04 15:02:04
|
|
331
|
-
* @type {string}
|
|
332
|
-
*/
|
|
333
|
-
title?: string;
|
|
334
|
-
/**
|
|
335
|
-
* 应用标题
|
|
336
|
-
*
|
|
337
|
-
* @author chitanda
|
|
338
|
-
* @date 2024-02-04 15:02:20
|
|
339
|
-
* @type {string}
|
|
340
|
-
*/
|
|
341
|
-
caption?: string;
|
|
342
|
-
/**
|
|
343
|
-
* 应用子标题
|
|
344
|
-
*
|
|
345
|
-
* @author chitanda
|
|
346
|
-
* @date 2024-02-04 15:02:35
|
|
347
|
-
* @type {string}
|
|
348
|
-
*/
|
|
349
|
-
subCaption?: string;
|
|
350
348
|
}
|
package/out/view/iuiaction.d.ts
CHANGED
|
@@ -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,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
|
}
|
package/src/app/iapplication.ts
CHANGED
|
@@ -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
|
-
* 来源
|
|
242
|
+
* 来源 getBottomInfo
|
|
242
243
|
*/
|
|
243
|
-
|
|
244
|
+
bottomInfo?: string;
|
|
244
245
|
|
|
245
246
|
/**
|
|
246
|
-
*
|
|
247
|
-
* @
|
|
248
|
-
*
|
|
249
|
-
* 来源 getCodeNameMode
|
|
247
|
+
* 应用标题
|
|
248
|
+
* @type {string}
|
|
249
|
+
* 来源 getCaption
|
|
250
250
|
*/
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
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}
|
|
@@ -365,49 +412,4 @@ export interface IApplication extends IModelObject {
|
|
|
365
412
|
* 来源 isWFAppMode
|
|
366
413
|
*/
|
|
367
414
|
wfappMode?: boolean;
|
|
368
|
-
|
|
369
|
-
/**
|
|
370
|
-
* 应用下方信息
|
|
371
|
-
*
|
|
372
|
-
* @author chitanda
|
|
373
|
-
* @date 2024-02-04 15:02:20
|
|
374
|
-
* @type {string}
|
|
375
|
-
*/
|
|
376
|
-
bottomInfo?: string;
|
|
377
|
-
|
|
378
|
-
/**
|
|
379
|
-
* 应用头部信息
|
|
380
|
-
*
|
|
381
|
-
* @author chitanda
|
|
382
|
-
* @date 2024-02-04 15:02:39
|
|
383
|
-
* @type {string}
|
|
384
|
-
*/
|
|
385
|
-
headerInfo?: string;
|
|
386
|
-
|
|
387
|
-
/**
|
|
388
|
-
* 应用抬头
|
|
389
|
-
*
|
|
390
|
-
* @author chitanda
|
|
391
|
-
* @date 2024-02-04 15:02:04
|
|
392
|
-
* @type {string}
|
|
393
|
-
*/
|
|
394
|
-
title?: string;
|
|
395
|
-
|
|
396
|
-
/**
|
|
397
|
-
* 应用标题
|
|
398
|
-
*
|
|
399
|
-
* @author chitanda
|
|
400
|
-
* @date 2024-02-04 15:02:20
|
|
401
|
-
* @type {string}
|
|
402
|
-
*/
|
|
403
|
-
caption?: string;
|
|
404
|
-
|
|
405
|
-
/**
|
|
406
|
-
* 应用子标题
|
|
407
|
-
*
|
|
408
|
-
* @author chitanda
|
|
409
|
-
* @date 2024-02-04 15:02:35
|
|
410
|
-
* @type {string}
|
|
411
|
-
*/
|
|
412
|
-
subCaption?: string;
|
|
413
415
|
}
|
package/src/view/iuiaction.ts
CHANGED
|
@@ -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
|
/**
|