@gct-paas/api 6.0.0-dev.12 → 6.0.0-dev.13
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/dist/index.esm.min.js +1 -1
- package/es/apaas/service/api-config.mjs +181 -6
- package/es/apaas/service/apis/app-org.service.d.ts +0 -4
- package/es/apaas/service/apis/category.service.d.ts +0 -8
- package/es/apaas/service/apis/custom-field.service.d.ts +45 -4
- package/es/apaas/service/apis/custom-object.service.d.ts +120 -5
- package/es/apaas/service/apis/edhr-category.service.d.ts +27 -1
- package/es/apaas/service/apis/edhr-instance-search-history.service.d.ts +21 -0
- package/es/apaas/service/apis/edhr-instance.service.d.ts +16 -0
- package/es/apaas/service/apis/mdm-category.service.d.ts +148 -0
- package/es/apaas/service/apis/message-tmpl.service.d.ts +4 -0
- package/es/apaas/service/apis/ocr.service.d.ts +7 -1
- package/es/apaas/service/apis/online-form-category.service.d.ts +27 -1
- package/es/apaas/service/apis/online-form-instance.service.d.ts +12 -0
- package/es/apaas/service/apis/online-form-tmpl.service.d.ts +47 -1
- package/es/apaas/service/entities.d.ts +420 -34
- package/es/apaas/service/index.d.ts +2 -0
- package/es/platform/service/api-config.mjs +6 -0
- package/es/platform/service/apis/api.service.d.ts +10 -1
- package/es/platform/service/apis/app.service.d.ts +4 -0
- package/es/platform/service/entities.d.ts +32 -0
- package/package.json +6 -2
|
@@ -2923,6 +2923,12 @@ export interface CheckPwdRequest {
|
|
|
2923
2923
|
* @type string
|
|
2924
2924
|
*/
|
|
2925
2925
|
password?: string;
|
|
2926
|
+
/**
|
|
2927
|
+
*
|
|
2928
|
+
*
|
|
2929
|
+
* @type string
|
|
2930
|
+
*/
|
|
2931
|
+
tenantId?: string;
|
|
2926
2932
|
/**
|
|
2927
2933
|
*
|
|
2928
2934
|
*
|
|
@@ -3153,6 +3159,12 @@ export interface ChildEdhrInstanceRelationDTO {
|
|
|
3153
3159
|
* @type number
|
|
3154
3160
|
*/
|
|
3155
3161
|
qty?: number;
|
|
3162
|
+
/**
|
|
3163
|
+
*
|
|
3164
|
+
*
|
|
3165
|
+
* @type string
|
|
3166
|
+
*/
|
|
3167
|
+
relatedParentName?: string;
|
|
3156
3168
|
/**
|
|
3157
3169
|
*
|
|
3158
3170
|
*
|
|
@@ -6319,12 +6331,24 @@ export interface DocControlStartedRequest {
|
|
|
6319
6331
|
* @type string
|
|
6320
6332
|
*/
|
|
6321
6333
|
offlineVersion?: string;
|
|
6334
|
+
/**
|
|
6335
|
+
* 发起审核时流程定义ID数据的快照
|
|
6336
|
+
*
|
|
6337
|
+
* @type string
|
|
6338
|
+
*/
|
|
6339
|
+
procDefId?: string;
|
|
6322
6340
|
/**
|
|
6323
6341
|
* 流程实例id
|
|
6324
6342
|
*
|
|
6325
6343
|
* @type string
|
|
6326
6344
|
*/
|
|
6327
6345
|
processInstanceId?: string;
|
|
6346
|
+
/**
|
|
6347
|
+
* 流程来源(DEFAULT:默认配置,USER_DEFINED:自定义)
|
|
6348
|
+
*
|
|
6349
|
+
* @type string
|
|
6350
|
+
*/
|
|
6351
|
+
processSource?: string;
|
|
6328
6352
|
/**
|
|
6329
6353
|
* 发起审核时数据的快照
|
|
6330
6354
|
*
|
|
@@ -6459,12 +6483,24 @@ export interface DocControlStartedResponse {
|
|
|
6459
6483
|
* @type string
|
|
6460
6484
|
*/
|
|
6461
6485
|
offlineVersion?: string;
|
|
6486
|
+
/**
|
|
6487
|
+
* 发起审核时流程定义ID数据的快照
|
|
6488
|
+
*
|
|
6489
|
+
* @type string
|
|
6490
|
+
*/
|
|
6491
|
+
procDefId?: string;
|
|
6462
6492
|
/**
|
|
6463
6493
|
* 流程实例id
|
|
6464
6494
|
*
|
|
6465
6495
|
* @type string
|
|
6466
6496
|
*/
|
|
6467
6497
|
processInstanceId?: string;
|
|
6498
|
+
/**
|
|
6499
|
+
* 流程来源(DEFAULT:默认配置,USER_DEFINED:自定义)
|
|
6500
|
+
*
|
|
6501
|
+
* @type string
|
|
6502
|
+
*/
|
|
6503
|
+
processSource?: string;
|
|
6468
6504
|
/**
|
|
6469
6505
|
* 发起审核时数据的快照
|
|
6470
6506
|
*
|
|
@@ -7917,6 +7953,12 @@ export interface EdhrInstance {
|
|
|
7917
7953
|
* @type number
|
|
7918
7954
|
*/
|
|
7919
7955
|
qty?: number;
|
|
7956
|
+
/**
|
|
7957
|
+
*
|
|
7958
|
+
*
|
|
7959
|
+
* @type string
|
|
7960
|
+
*/
|
|
7961
|
+
relatedParentName?: string;
|
|
7920
7962
|
/**
|
|
7921
7963
|
*
|
|
7922
7964
|
*
|
|
@@ -8347,6 +8389,18 @@ export interface EdhrInstanceSearchHistoryResponse {
|
|
|
8347
8389
|
* @type string
|
|
8348
8390
|
*/
|
|
8349
8391
|
materialStatus?: string;
|
|
8392
|
+
/**
|
|
8393
|
+
* 工单编码
|
|
8394
|
+
*
|
|
8395
|
+
* @type string
|
|
8396
|
+
*/
|
|
8397
|
+
mfgOrderCode?: string;
|
|
8398
|
+
/**
|
|
8399
|
+
* 工单ID
|
|
8400
|
+
*
|
|
8401
|
+
* @type string
|
|
8402
|
+
*/
|
|
8403
|
+
mfgOrderId?: string;
|
|
8350
8404
|
/**
|
|
8351
8405
|
* 修改人部门id
|
|
8352
8406
|
*
|
|
@@ -8371,6 +8425,36 @@ export interface EdhrInstanceSearchHistoryResponse {
|
|
|
8371
8425
|
* @type string
|
|
8372
8426
|
*/
|
|
8373
8427
|
modifyUserName?: string;
|
|
8428
|
+
/**
|
|
8429
|
+
* 产品编码
|
|
8430
|
+
*
|
|
8431
|
+
* @type string
|
|
8432
|
+
*/
|
|
8433
|
+
productCode?: string;
|
|
8434
|
+
/**
|
|
8435
|
+
* 产品ID
|
|
8436
|
+
*
|
|
8437
|
+
* @type string
|
|
8438
|
+
*/
|
|
8439
|
+
productId?: string;
|
|
8440
|
+
/**
|
|
8441
|
+
* 产品名称
|
|
8442
|
+
*
|
|
8443
|
+
* @type string
|
|
8444
|
+
*/
|
|
8445
|
+
productName?: string;
|
|
8446
|
+
/**
|
|
8447
|
+
* 产品规格
|
|
8448
|
+
*
|
|
8449
|
+
* @type string
|
|
8450
|
+
*/
|
|
8451
|
+
productSpec?: string;
|
|
8452
|
+
/**
|
|
8453
|
+
* 关联父批次号
|
|
8454
|
+
*
|
|
8455
|
+
* @type string
|
|
8456
|
+
*/
|
|
8457
|
+
relatedParentName?: string;
|
|
8374
8458
|
/**
|
|
8375
8459
|
* 租户id
|
|
8376
8460
|
*
|
|
@@ -11739,6 +11823,12 @@ export interface FileTaskDTO {
|
|
|
11739
11823
|
* @type string
|
|
11740
11824
|
*/
|
|
11741
11825
|
eDHRType?: string;
|
|
11826
|
+
/**
|
|
11827
|
+
* 表单变更日志打印位置(EACH_FORM_AFTER:衔接表单,INDEPENDENT:独立分开)
|
|
11828
|
+
*
|
|
11829
|
+
* @type string
|
|
11830
|
+
*/
|
|
11831
|
+
formChangeLogPrintPosition?: string;
|
|
11742
11832
|
/**
|
|
11743
11833
|
* 是否包含半成品批次(当type为EDHR时使用,用于判断打印时是否需要打印半成品批次eDHR)
|
|
11744
11834
|
*
|
|
@@ -13804,7 +13894,7 @@ export interface LabelBtwDesigner {
|
|
|
13804
13894
|
*/
|
|
13805
13895
|
name?: string;
|
|
13806
13896
|
/**
|
|
13807
|
-
* btw模板路径类型:
|
|
13897
|
+
* btw模板路径类型:abs绝对、rel相对(必传)
|
|
13808
13898
|
*
|
|
13809
13899
|
* @type string
|
|
13810
13900
|
*/
|
|
@@ -14006,7 +14096,7 @@ export interface LabelRequest {
|
|
|
14006
14096
|
*/
|
|
14007
14097
|
dpi?: number;
|
|
14008
14098
|
/**
|
|
14009
|
-
* btw
|
|
14099
|
+
* btw模板的相对路径(绝对路径、相对路径都要传递)
|
|
14010
14100
|
*
|
|
14011
14101
|
* @type string
|
|
14012
14102
|
*/
|
|
@@ -14036,7 +14126,7 @@ export interface LabelRequest {
|
|
|
14036
14126
|
*/
|
|
14037
14127
|
name?: string;
|
|
14038
14128
|
/**
|
|
14039
|
-
* btw模板路径类型:
|
|
14129
|
+
* btw模板路径类型:rel 相对路径、abs 绝对路径(btw时必传)
|
|
14040
14130
|
*
|
|
14041
14131
|
* @type string
|
|
14042
14132
|
*/
|
|
@@ -14212,7 +14302,7 @@ export interface LabelResponse {
|
|
|
14212
14302
|
*/
|
|
14213
14303
|
name?: string;
|
|
14214
14304
|
/**
|
|
14215
|
-
*
|
|
14305
|
+
* btw模板路径类型:btw模板路径类型:rel 相对路径、abs 绝对路径
|
|
14216
14306
|
*
|
|
14217
14307
|
* @type string
|
|
14218
14308
|
*/
|
|
@@ -14317,6 +14407,220 @@ export interface MaterialNo4TaskResponse {
|
|
|
14317
14407
|
* @type string
|
|
14318
14408
|
*/
|
|
14319
14409
|
mfgOrderId?: string;
|
|
14410
|
+
/**
|
|
14411
|
+
* 产品编码
|
|
14412
|
+
*
|
|
14413
|
+
* @type string
|
|
14414
|
+
*/
|
|
14415
|
+
productCode?: string;
|
|
14416
|
+
/**
|
|
14417
|
+
* 产品ID
|
|
14418
|
+
*
|
|
14419
|
+
* @type string
|
|
14420
|
+
*/
|
|
14421
|
+
productId?: string;
|
|
14422
|
+
/**
|
|
14423
|
+
* 产品名称
|
|
14424
|
+
*
|
|
14425
|
+
* @type string
|
|
14426
|
+
*/
|
|
14427
|
+
productName?: string;
|
|
14428
|
+
/**
|
|
14429
|
+
* 产品规格
|
|
14430
|
+
*
|
|
14431
|
+
* @type string
|
|
14432
|
+
*/
|
|
14433
|
+
productSpec?: string;
|
|
14434
|
+
/**
|
|
14435
|
+
* 关联父批次号
|
|
14436
|
+
*
|
|
14437
|
+
* @type string
|
|
14438
|
+
*/
|
|
14439
|
+
relatedParentName?: string;
|
|
14440
|
+
}
|
|
14441
|
+
export interface MdmCategoryRequest {
|
|
14442
|
+
/**
|
|
14443
|
+
* 审核模版状态
|
|
14444
|
+
*
|
|
14445
|
+
* @type boolean
|
|
14446
|
+
*/
|
|
14447
|
+
approveTmplOperatingState?: boolean;
|
|
14448
|
+
/**
|
|
14449
|
+
* 业务分类
|
|
14450
|
+
*
|
|
14451
|
+
* @type string
|
|
14452
|
+
*/
|
|
14453
|
+
bizType?: string;
|
|
14454
|
+
/**
|
|
14455
|
+
* 创建人部门id
|
|
14456
|
+
*
|
|
14457
|
+
* @type string
|
|
14458
|
+
*/
|
|
14459
|
+
createOrgId?: string;
|
|
14460
|
+
/**
|
|
14461
|
+
* 全路径
|
|
14462
|
+
*
|
|
14463
|
+
* @type string
|
|
14464
|
+
*/
|
|
14465
|
+
fullPath?: string;
|
|
14466
|
+
/**
|
|
14467
|
+
* 层级
|
|
14468
|
+
*
|
|
14469
|
+
* @type number
|
|
14470
|
+
*/
|
|
14471
|
+
level?: number;
|
|
14472
|
+
/**
|
|
14473
|
+
* 修改人部门id
|
|
14474
|
+
*
|
|
14475
|
+
* @type string
|
|
14476
|
+
*/
|
|
14477
|
+
modifyOrgId?: string;
|
|
14478
|
+
/**
|
|
14479
|
+
* 名称
|
|
14480
|
+
*
|
|
14481
|
+
* @type string
|
|
14482
|
+
*/
|
|
14483
|
+
name?: string;
|
|
14484
|
+
/**
|
|
14485
|
+
* 父节点ID
|
|
14486
|
+
*
|
|
14487
|
+
* @type string
|
|
14488
|
+
*/
|
|
14489
|
+
parentId?: string;
|
|
14490
|
+
/**
|
|
14491
|
+
* 业务分类
|
|
14492
|
+
*
|
|
14493
|
+
* @type string
|
|
14494
|
+
*/
|
|
14495
|
+
procDefId?: string;
|
|
14496
|
+
/**
|
|
14497
|
+
* 排序号
|
|
14498
|
+
*
|
|
14499
|
+
* @type number
|
|
14500
|
+
*/
|
|
14501
|
+
sortNum?: number;
|
|
14502
|
+
/**
|
|
14503
|
+
* 租户id
|
|
14504
|
+
*
|
|
14505
|
+
* @type string
|
|
14506
|
+
*/
|
|
14507
|
+
tenantId?: string;
|
|
14508
|
+
}
|
|
14509
|
+
export interface MdmCategoryResponse {
|
|
14510
|
+
/**
|
|
14511
|
+
* 审核模版状态
|
|
14512
|
+
*
|
|
14513
|
+
* @type boolean
|
|
14514
|
+
*/
|
|
14515
|
+
approveTmplOperatingState?: boolean;
|
|
14516
|
+
/**
|
|
14517
|
+
* 业务分类
|
|
14518
|
+
*
|
|
14519
|
+
* @type string
|
|
14520
|
+
*/
|
|
14521
|
+
bizType?: string;
|
|
14522
|
+
/**
|
|
14523
|
+
* 子分类
|
|
14524
|
+
*
|
|
14525
|
+
* @type MdmCategoryResponse[]
|
|
14526
|
+
*/
|
|
14527
|
+
children?: MdmCategoryResponse[];
|
|
14528
|
+
/**
|
|
14529
|
+
* 创建人部门id
|
|
14530
|
+
*
|
|
14531
|
+
* @type string
|
|
14532
|
+
*/
|
|
14533
|
+
createOrgId?: string;
|
|
14534
|
+
/**
|
|
14535
|
+
*
|
|
14536
|
+
*
|
|
14537
|
+
* @type string
|
|
14538
|
+
*/
|
|
14539
|
+
createTime?: string;
|
|
14540
|
+
/**
|
|
14541
|
+
*
|
|
14542
|
+
*
|
|
14543
|
+
* @type string
|
|
14544
|
+
*/
|
|
14545
|
+
createUserId?: string;
|
|
14546
|
+
/**
|
|
14547
|
+
*
|
|
14548
|
+
*
|
|
14549
|
+
* @type string
|
|
14550
|
+
*/
|
|
14551
|
+
createUserName?: string;
|
|
14552
|
+
/**
|
|
14553
|
+
* 全路径
|
|
14554
|
+
*
|
|
14555
|
+
* @type string
|
|
14556
|
+
*/
|
|
14557
|
+
fullPath?: string;
|
|
14558
|
+
/**
|
|
14559
|
+
* 主键
|
|
14560
|
+
*
|
|
14561
|
+
* @type string
|
|
14562
|
+
*/
|
|
14563
|
+
id?: string;
|
|
14564
|
+
/**
|
|
14565
|
+
* 层级
|
|
14566
|
+
*
|
|
14567
|
+
* @type number
|
|
14568
|
+
*/
|
|
14569
|
+
level?: number;
|
|
14570
|
+
/**
|
|
14571
|
+
* 修改人部门id
|
|
14572
|
+
*
|
|
14573
|
+
* @type string
|
|
14574
|
+
*/
|
|
14575
|
+
modifyOrgId?: string;
|
|
14576
|
+
/**
|
|
14577
|
+
*
|
|
14578
|
+
*
|
|
14579
|
+
* @type string
|
|
14580
|
+
*/
|
|
14581
|
+
modifyTime?: string;
|
|
14582
|
+
/**
|
|
14583
|
+
*
|
|
14584
|
+
*
|
|
14585
|
+
* @type string
|
|
14586
|
+
*/
|
|
14587
|
+
modifyUserId?: string;
|
|
14588
|
+
/**
|
|
14589
|
+
*
|
|
14590
|
+
*
|
|
14591
|
+
* @type string
|
|
14592
|
+
*/
|
|
14593
|
+
modifyUserName?: string;
|
|
14594
|
+
/**
|
|
14595
|
+
* 名称
|
|
14596
|
+
*
|
|
14597
|
+
* @type string
|
|
14598
|
+
*/
|
|
14599
|
+
name?: string;
|
|
14600
|
+
/**
|
|
14601
|
+
* 父节点ID
|
|
14602
|
+
*
|
|
14603
|
+
* @type string
|
|
14604
|
+
*/
|
|
14605
|
+
parentId?: string;
|
|
14606
|
+
/**
|
|
14607
|
+
* 流程定义id
|
|
14608
|
+
*
|
|
14609
|
+
* @type string
|
|
14610
|
+
*/
|
|
14611
|
+
procDefId?: string;
|
|
14612
|
+
/**
|
|
14613
|
+
* 排序号
|
|
14614
|
+
*
|
|
14615
|
+
* @type number
|
|
14616
|
+
*/
|
|
14617
|
+
sortNum?: number;
|
|
14618
|
+
/**
|
|
14619
|
+
* 租户id
|
|
14620
|
+
*
|
|
14621
|
+
* @type string
|
|
14622
|
+
*/
|
|
14623
|
+
tenantId?: string;
|
|
14320
14624
|
}
|
|
14321
14625
|
export interface MenuConfig {
|
|
14322
14626
|
/**
|
|
@@ -15463,6 +15767,12 @@ export interface MessageTmplOpenedRequest {
|
|
|
15463
15767
|
opened?: number;
|
|
15464
15768
|
}
|
|
15465
15769
|
export interface MessageTmplRequest {
|
|
15770
|
+
/**
|
|
15771
|
+
* 业务类型
|
|
15772
|
+
*
|
|
15773
|
+
* @type string
|
|
15774
|
+
*/
|
|
15775
|
+
businessType?: string;
|
|
15466
15776
|
/**
|
|
15467
15777
|
* 数据源,0模型,1自定义
|
|
15468
15778
|
*
|
|
@@ -15549,6 +15859,12 @@ export interface MessageTmplRequest {
|
|
|
15549
15859
|
tenantId?: string;
|
|
15550
15860
|
}
|
|
15551
15861
|
export interface MessageTmplResponse {
|
|
15862
|
+
/**
|
|
15863
|
+
* 业务类型
|
|
15864
|
+
*
|
|
15865
|
+
* @type string
|
|
15866
|
+
*/
|
|
15867
|
+
businessType?: string;
|
|
15552
15868
|
/**
|
|
15553
15869
|
*
|
|
15554
15870
|
*
|
|
@@ -15683,6 +15999,12 @@ export interface MessageTmplSendRequest {
|
|
|
15683
15999
|
* @type string
|
|
15684
16000
|
*/
|
|
15685
16001
|
actId?: string;
|
|
16002
|
+
/**
|
|
16003
|
+
* 业务类型
|
|
16004
|
+
*
|
|
16005
|
+
* @type string
|
|
16006
|
+
*/
|
|
16007
|
+
businessType?: string;
|
|
15686
16008
|
/**
|
|
15687
16009
|
*
|
|
15688
16010
|
*
|
|
@@ -17388,20 +17710,6 @@ export interface ModelPermissionRelationResponse {
|
|
|
17388
17710
|
*/
|
|
17389
17711
|
sortNum?: number;
|
|
17390
17712
|
}
|
|
17391
|
-
export interface ModelRelationDTO {
|
|
17392
|
-
/**
|
|
17393
|
-
* 分类ID
|
|
17394
|
-
*
|
|
17395
|
-
* @type string
|
|
17396
|
-
*/
|
|
17397
|
-
categoryId?: string;
|
|
17398
|
-
/**
|
|
17399
|
-
*
|
|
17400
|
-
*
|
|
17401
|
-
* @type string[]
|
|
17402
|
-
*/
|
|
17403
|
-
ids?: string[];
|
|
17404
|
-
}
|
|
17405
17713
|
export interface ModelRelationInfo {
|
|
17406
17714
|
/**
|
|
17407
17715
|
*
|
|
@@ -17835,6 +18143,18 @@ export interface OfProcessControlRequest {
|
|
|
17835
18143
|
* @type string
|
|
17836
18144
|
*/
|
|
17837
18145
|
effectiveDate?: string;
|
|
18146
|
+
/**
|
|
18147
|
+
* 发起审核时流程定义ID数据的快照
|
|
18148
|
+
*
|
|
18149
|
+
* @type string
|
|
18150
|
+
*/
|
|
18151
|
+
procDefId?: string;
|
|
18152
|
+
/**
|
|
18153
|
+
* 流程来源(DEFAULT:默认配置,USER_DEFINED:自定义)
|
|
18154
|
+
*
|
|
18155
|
+
* @type string
|
|
18156
|
+
*/
|
|
18157
|
+
processSource?: string;
|
|
17838
18158
|
/**
|
|
17839
18159
|
* 模板ID
|
|
17840
18160
|
*
|
|
@@ -18836,11 +19156,17 @@ export interface OnlineFormDesignDTO {
|
|
|
18836
19156
|
*/
|
|
18837
19157
|
direction?: string;
|
|
18838
19158
|
/**
|
|
18839
|
-
*
|
|
19159
|
+
* 表单子表bom
|
|
18840
19160
|
*
|
|
18841
19161
|
* @type object[]
|
|
18842
19162
|
*/
|
|
18843
19163
|
formTmplBomList?: object[];
|
|
19164
|
+
/**
|
|
19165
|
+
* 表单对象bom
|
|
19166
|
+
*
|
|
19167
|
+
* @type object[]
|
|
19168
|
+
*/
|
|
19169
|
+
formTmplObjectBomList?: object[];
|
|
18844
19170
|
/**
|
|
18845
19171
|
* 高度
|
|
18846
19172
|
*
|
|
@@ -19333,6 +19659,12 @@ export interface OnlineFormInstance {
|
|
|
19333
19659
|
* @type string
|
|
19334
19660
|
*/
|
|
19335
19661
|
recordNo?: string;
|
|
19662
|
+
/**
|
|
19663
|
+
*
|
|
19664
|
+
*
|
|
19665
|
+
* @type string
|
|
19666
|
+
*/
|
|
19667
|
+
refillApproveStatus?: string;
|
|
19336
19668
|
/**
|
|
19337
19669
|
*
|
|
19338
19670
|
*
|
|
@@ -19351,6 +19683,12 @@ export interface OnlineFormInstance {
|
|
|
19351
19683
|
* @type string[]
|
|
19352
19684
|
*/
|
|
19353
19685
|
relatedMfgOrderIds?: string[];
|
|
19686
|
+
/**
|
|
19687
|
+
*
|
|
19688
|
+
*
|
|
19689
|
+
* @type string
|
|
19690
|
+
*/
|
|
19691
|
+
relatedParentName?: string;
|
|
19354
19692
|
/**
|
|
19355
19693
|
*
|
|
19356
19694
|
*
|
|
@@ -19533,6 +19871,18 @@ export interface OnlineFormInstanceDTO {
|
|
|
19533
19871
|
* @type string
|
|
19534
19872
|
*/
|
|
19535
19873
|
params?: string;
|
|
19874
|
+
/**
|
|
19875
|
+
*
|
|
19876
|
+
*
|
|
19877
|
+
* @type string
|
|
19878
|
+
*/
|
|
19879
|
+
refillApproveStatus?: string;
|
|
19880
|
+
/**
|
|
19881
|
+
*
|
|
19882
|
+
*
|
|
19883
|
+
* @type string[]
|
|
19884
|
+
*/
|
|
19885
|
+
relatedFieldTypeList?: string[];
|
|
19536
19886
|
/**
|
|
19537
19887
|
*
|
|
19538
19888
|
*
|
|
@@ -20103,6 +20453,12 @@ export interface OnlineFormInstanceResponse {
|
|
|
20103
20453
|
* @type string
|
|
20104
20454
|
*/
|
|
20105
20455
|
recordNo?: string;
|
|
20456
|
+
/**
|
|
20457
|
+
* 重填状态
|
|
20458
|
+
*
|
|
20459
|
+
* @type string
|
|
20460
|
+
*/
|
|
20461
|
+
refillApproveStatus?: string;
|
|
20106
20462
|
/**
|
|
20107
20463
|
* 关联批次(已过时,但前端目前还是老代码还在用)
|
|
20108
20464
|
*
|
|
@@ -20127,6 +20483,12 @@ export interface OnlineFormInstanceResponse {
|
|
|
20127
20483
|
* @type string[]
|
|
20128
20484
|
*/
|
|
20129
20485
|
relatedMfgOrderIds?: string[];
|
|
20486
|
+
/**
|
|
20487
|
+
* 关联批号
|
|
20488
|
+
*
|
|
20489
|
+
* @type string
|
|
20490
|
+
*/
|
|
20491
|
+
relatedParentName?: string;
|
|
20130
20492
|
/**
|
|
20131
20493
|
* 关联id
|
|
20132
20494
|
*
|
|
@@ -20199,6 +20561,12 @@ export interface OnlineFormInstanceResponse {
|
|
|
20199
20561
|
* @type string
|
|
20200
20562
|
*/
|
|
20201
20563
|
tmplVersion?: string;
|
|
20564
|
+
/**
|
|
20565
|
+
* 事务配置
|
|
20566
|
+
*
|
|
20567
|
+
* @type string
|
|
20568
|
+
*/
|
|
20569
|
+
txnConfig?: string;
|
|
20202
20570
|
/**
|
|
20203
20571
|
* 事务实例ID
|
|
20204
20572
|
*
|
|
@@ -30607,6 +30975,12 @@ export interface ProductReleaseFormInstanctDTO {
|
|
|
30607
30975
|
* @type string
|
|
30608
30976
|
*/
|
|
30609
30977
|
recordNo?: string;
|
|
30978
|
+
/**
|
|
30979
|
+
*
|
|
30980
|
+
*
|
|
30981
|
+
* @type string
|
|
30982
|
+
*/
|
|
30983
|
+
refillApproveStatus?: string;
|
|
30610
30984
|
/**
|
|
30611
30985
|
*
|
|
30612
30986
|
*
|
|
@@ -30625,6 +30999,12 @@ export interface ProductReleaseFormInstanctDTO {
|
|
|
30625
30999
|
* @type string[]
|
|
30626
31000
|
*/
|
|
30627
31001
|
relatedMfgOrderIds?: string[];
|
|
31002
|
+
/**
|
|
31003
|
+
*
|
|
31004
|
+
*
|
|
31005
|
+
* @type string
|
|
31006
|
+
*/
|
|
31007
|
+
relatedParentName?: string;
|
|
30628
31008
|
/**
|
|
30629
31009
|
*
|
|
30630
31010
|
*
|
|
@@ -33091,6 +33471,12 @@ export interface ScriptContrastDTO {
|
|
|
33091
33471
|
* @type string
|
|
33092
33472
|
*/
|
|
33093
33473
|
mergeResult?: string;
|
|
33474
|
+
/**
|
|
33475
|
+
*
|
|
33476
|
+
*
|
|
33477
|
+
* @type string
|
|
33478
|
+
*/
|
|
33479
|
+
module?: string;
|
|
33094
33480
|
/**
|
|
33095
33481
|
*
|
|
33096
33482
|
*
|
|
@@ -33110,13 +33496,13 @@ export interface ScriptContrastDTO {
|
|
|
33110
33496
|
*/
|
|
33111
33497
|
sortNum?: number;
|
|
33112
33498
|
/**
|
|
33113
|
-
*
|
|
33499
|
+
* 源版版本内容json
|
|
33114
33500
|
*
|
|
33115
33501
|
* @type string
|
|
33116
33502
|
*/
|
|
33117
33503
|
sourceContent?: string;
|
|
33118
33504
|
/**
|
|
33119
|
-
*
|
|
33505
|
+
* 目标版本内容json
|
|
33120
33506
|
*
|
|
33121
33507
|
* @type string
|
|
33122
33508
|
*/
|
|
@@ -33815,6 +34201,18 @@ export interface SecurityConfig {
|
|
|
33815
34201
|
* @type number
|
|
33816
34202
|
*/
|
|
33817
34203
|
signExpiryDate?: number;
|
|
34204
|
+
/**
|
|
34205
|
+
* 刷卡签名关联字段(username_/账号,emp_no_/工号,mobile_/手机号码)
|
|
34206
|
+
*
|
|
34207
|
+
* @type string
|
|
34208
|
+
*/
|
|
34209
|
+
signField?: string;
|
|
34210
|
+
/**
|
|
34211
|
+
* 刷卡签名关联字段名称,冗余前端显示用
|
|
34212
|
+
*
|
|
34213
|
+
* @type string
|
|
34214
|
+
*/
|
|
34215
|
+
signFieldName?: string;
|
|
33818
34216
|
/**
|
|
33819
34217
|
* 签名密码-首次登录是否修改密码
|
|
33820
34218
|
*
|
|
@@ -39690,25 +40088,13 @@ export interface 自定义字段引用表单模板 {
|
|
|
39690
40088
|
*/
|
|
39691
40089
|
offlineVersion?: string;
|
|
39692
40090
|
}
|
|
39693
|
-
export interface
|
|
40091
|
+
export interface 自定义对象主表保存请求 {
|
|
39694
40092
|
/**
|
|
39695
40093
|
*
|
|
39696
40094
|
*
|
|
39697
40095
|
* @type string
|
|
39698
40096
|
*/
|
|
39699
40097
|
description?: string;
|
|
39700
|
-
/**
|
|
39701
|
-
*
|
|
39702
|
-
*
|
|
39703
|
-
* @type 自定义对象字段请求[]
|
|
39704
|
-
*/
|
|
39705
|
-
fields?: 自定义对象字段请求[];
|
|
39706
|
-
/**
|
|
39707
|
-
* 对象id;修改时传入
|
|
39708
|
-
*
|
|
39709
|
-
* @type string
|
|
39710
|
-
*/
|
|
39711
|
-
id?: string;
|
|
39712
40098
|
/**
|
|
39713
40099
|
*
|
|
39714
40100
|
*
|
|
@@ -77,6 +77,7 @@ import type { JsEngineService } from './apis/js-engine.service';
|
|
|
77
77
|
import type { LabelService } from './apis/label.service';
|
|
78
78
|
import type { LabelLogService } from './apis/label-log.service';
|
|
79
79
|
import type { LoginLogService } from './apis/login-log.service';
|
|
80
|
+
import type { MdmCategoryService } from './apis/mdm-category.service';
|
|
80
81
|
import type { MenuConfigService } from './apis/menu-config.service';
|
|
81
82
|
import type { MergeLogService } from './apis/merge-log.service';
|
|
82
83
|
import type { MessageRecordService } from './apis/message-record.service';
|
|
@@ -251,6 +252,7 @@ export interface ApiManage {
|
|
|
251
252
|
readonly label: LabelService;
|
|
252
253
|
readonly labelLog: LabelLogService;
|
|
253
254
|
readonly loginLog: LoginLogService;
|
|
255
|
+
readonly mdmCategory: MdmCategoryService;
|
|
254
256
|
readonly menuConfig: MenuConfigService;
|
|
255
257
|
readonly mergeLog: MergeLogService;
|
|
256
258
|
readonly messageRecord: MessageRecordService;
|
|
@@ -5770,6 +5770,12 @@ export const apiConfig = [
|
|
|
5770
5770
|
path: "login-log/userLoginLogPage",
|
|
5771
5771
|
hasData: true
|
|
5772
5772
|
},
|
|
5773
|
+
{
|
|
5774
|
+
mode: "post",
|
|
5775
|
+
method: "postLoginLoginConfirm",
|
|
5776
|
+
path: "login/login/confirm",
|
|
5777
|
+
hasData: true
|
|
5778
|
+
},
|
|
5773
5779
|
{
|
|
5774
5780
|
mode: "get",
|
|
5775
5781
|
method: "getLoginSettingGet",
|