@gct-paas/api 0.1.0-word.3 → 0.1.0

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.
Files changed (37) hide show
  1. package/dist/gct-api.esm.min.js +1 -1
  2. package/dist/gct-api.system.min.js +1 -1
  3. package/es/apaas/service/api-config.mjs +127 -2
  4. package/es/apaas/service/apis/app-global-settings.service.d.ts +0 -4
  5. package/es/apaas/service/apis/category.service.d.ts +16 -0
  6. package/es/apaas/service/apis/excel.service.d.ts +6 -2
  7. package/es/apaas/service/apis/field-meta.service.d.ts +21 -0
  8. package/es/apaas/service/apis/label.service.d.ts +11 -3
  9. package/es/apaas/service/apis/model-meta.service.d.ts +15 -1
  10. package/es/apaas/service/apis/online-form-instance.service.d.ts +45 -0
  11. package/es/apaas/service/apis/online-form.service.d.ts +8 -1
  12. package/es/apaas/service/entities.d.ts +347 -1
  13. package/es/apaas/service/index.d.ts +6 -0
  14. package/es/ipaas/service/api-config.mjs +5 -0
  15. package/es/ipaas/service/apis/flow.service.d.ts +12 -1
  16. package/es/ipaas/service/entities.d.ts +26 -0
  17. package/es/platform/service/api-config.mjs +0 -6
  18. package/es/platform/service/apis/api.service.d.ts +0 -13
  19. package/es/platform/service/apis/app.service.d.ts +4 -0
  20. package/lib/apaas/service/api-config.cjs +103 -2
  21. package/lib/apaas/service/apis/app-global-settings.service.d.ts +0 -4
  22. package/lib/apaas/service/apis/category.service.d.ts +16 -0
  23. package/lib/apaas/service/apis/excel.service.d.ts +6 -2
  24. package/lib/apaas/service/apis/field-meta.service.d.ts +21 -0
  25. package/lib/apaas/service/apis/label.service.d.ts +11 -3
  26. package/lib/apaas/service/apis/model-meta.service.d.ts +15 -1
  27. package/lib/apaas/service/apis/online-form-instance.service.d.ts +45 -0
  28. package/lib/apaas/service/apis/online-form.service.d.ts +8 -1
  29. package/lib/apaas/service/entities.d.ts +347 -1
  30. package/lib/apaas/service/index.d.ts +6 -0
  31. package/lib/ipaas/service/api-config.cjs +4 -0
  32. package/lib/ipaas/service/apis/flow.service.d.ts +12 -1
  33. package/lib/ipaas/service/entities.d.ts +26 -0
  34. package/lib/platform/service/api-config.cjs +0 -5
  35. package/lib/platform/service/apis/api.service.d.ts +0 -13
  36. package/lib/platform/service/apis/app.service.d.ts +4 -0
  37. package/package.json +11 -4
@@ -1730,6 +1730,12 @@ export interface BtwNodeVO {
1730
1730
  * @type BtwNodeVO[]
1731
1731
  */
1732
1732
  children?: BtwNodeVO[];
1733
+ /**
1734
+ * 节点路径
1735
+ *
1736
+ * @type string
1737
+ */
1738
+ fullPath?: string;
1733
1739
  /**
1734
1740
  * 节点名称(目录名称、btw文件名称)
1735
1741
  *
@@ -3823,6 +3829,68 @@ export interface DashboardSortRequest {
3823
3829
  */
3824
3830
  targetSortNum?: number;
3825
3831
  }
3832
+ export interface DataCollectionInstanceAbandonRequest {
3833
+ /**
3834
+ * 表单实例Id
3835
+ *
3836
+ * @type string
3837
+ */
3838
+ id?: string;
3839
+ /**
3840
+ * 作废原因
3841
+ *
3842
+ * @type string
3843
+ */
3844
+ reason?: string;
3845
+ /**
3846
+ * 签名历史id集合
3847
+ *
3848
+ * @type string[]
3849
+ */
3850
+ signHistoryIds?: string[];
3851
+ /**
3852
+ * 数据采集任务id
3853
+ *
3854
+ * @type string
3855
+ */
3856
+ taskId?: string;
3857
+ }
3858
+ export interface DataCollectionOnlineFormInstanceRequest {
3859
+ /**
3860
+ * 数据采集任务Id
3861
+ *
3862
+ * @type string
3863
+ */
3864
+ dataCollectionTaskId?: string;
3865
+ /**
3866
+ * 表单实例备注名
3867
+ *
3868
+ * @type string
3869
+ */
3870
+ instanceAlias?: string;
3871
+ }
3872
+ export interface DataCollectionOnlineFormInstanceUpdateRequest {
3873
+ /**
3874
+ * 表单实例Id
3875
+ *
3876
+ * @type string
3877
+ */
3878
+ id?: string;
3879
+ /**
3880
+ * 表单实例备注名
3881
+ *
3882
+ * @type string
3883
+ */
3884
+ instanceAlias?: string;
3885
+ }
3886
+ export interface DataCollectionTaskUpdateStatusRequest {
3887
+ /**
3888
+ * 数据采集任务id
3889
+ *
3890
+ * @type string
3891
+ */
3892
+ taskId?: string;
3893
+ }
3826
3894
  export interface DataModelRequest {
3827
3895
  /**
3828
3896
  * 分类id
@@ -11033,6 +11101,62 @@ export interface ImportModelData {
11033
11101
  */
11034
11102
  sheetName?: string;
11035
11103
  }
11104
+ export interface ImportReportResponse {
11105
+ /**
11106
+ *
11107
+ *
11108
+ * @type string
11109
+ */
11110
+ createTime?: string;
11111
+ /**
11112
+ *
11113
+ *
11114
+ * @type string
11115
+ */
11116
+ createUserId?: string;
11117
+ /**
11118
+ *
11119
+ *
11120
+ * @type string
11121
+ */
11122
+ createUserName?: string;
11123
+ /**
11124
+ * 文件Id
11125
+ *
11126
+ * @type string
11127
+ */
11128
+ fileId?: string;
11129
+ /**
11130
+ * 主键
11131
+ *
11132
+ * @type string
11133
+ */
11134
+ id?: string;
11135
+ /**
11136
+ *
11137
+ *
11138
+ * @type string
11139
+ */
11140
+ modifyTime?: string;
11141
+ /**
11142
+ *
11143
+ *
11144
+ * @type string
11145
+ */
11146
+ modifyUserId?: string;
11147
+ /**
11148
+ *
11149
+ *
11150
+ * @type string
11151
+ */
11152
+ modifyUserName?: string;
11153
+ /**
11154
+ * 报告
11155
+ *
11156
+ * @type string
11157
+ */
11158
+ report?: string;
11159
+ }
11036
11160
  export interface ImportVersionRequest {
11037
11161
  /**
11038
11162
  * 应用id
@@ -11520,6 +11644,44 @@ export interface JoinOnExp {
11520
11644
  export interface JsonNode {
11521
11645
  // 暂无属性
11522
11646
  }
11647
+ export interface LabelBtwDesigner {
11648
+ /**
11649
+ *
11650
+ *
11651
+ * @type string
11652
+ */
11653
+ designerJson?: string;
11654
+ /**
11655
+ * btw模板的相对路径
11656
+ *
11657
+ * @type string
11658
+ */
11659
+ fullPath?: string;
11660
+ /**
11661
+ *
11662
+ *
11663
+ * @type string
11664
+ */
11665
+ id?: string;
11666
+ /**
11667
+ * 绑定模型key
11668
+ *
11669
+ * @type string
11670
+ */
11671
+ modelKey?: string;
11672
+ /**
11673
+ * BarTender 标签模板
11674
+ *
11675
+ * @type string
11676
+ */
11677
+ name?: string;
11678
+ /**
11679
+ * 标签模板唯一标识(btw标签模板)
11680
+ *
11681
+ * @type string
11682
+ */
11683
+ printKey?: string;
11684
+ }
11523
11685
  export interface LabelDesigner {
11524
11686
  /**
11525
11687
  *
@@ -11709,6 +11871,12 @@ export interface LabelRequest {
11709
11871
  * @type number
11710
11872
  */
11711
11873
  dpi?: number;
11874
+ /**
11875
+ * btw模板的相对路径
11876
+ *
11877
+ * @type string
11878
+ */
11879
+ fullPath?: string;
11712
11880
  /**
11713
11881
  * 尺寸(高度)
11714
11882
  *
@@ -11831,6 +11999,12 @@ export interface LabelResponse {
11831
11999
  * @type number
11832
12000
  */
11833
12001
  draft?: number;
12002
+ /**
12003
+ * btw模板的相对路径
12004
+ *
12005
+ * @type string
12006
+ */
12007
+ fullPath?: string;
11834
12008
  /**
11835
12009
  * 尺寸(高度)
11836
12010
  *
@@ -11855,6 +12029,12 @@ export interface LabelResponse {
11855
12029
  * @type string
11856
12030
  */
11857
12031
  key?: string;
12032
+ /**
12033
+ * 关联的打印机的mac地址
12034
+ *
12035
+ * @type string
12036
+ */
12037
+ macAddress?: string;
11858
12038
  /**
11859
12039
  * 绑定模型key
11860
12040
  *
@@ -11897,6 +12077,12 @@ export interface LabelResponse {
11897
12077
  * @type string
11898
12078
  */
11899
12079
  printKey?: string;
12080
+ /**
12081
+ * 关联得打印机名称
12082
+ *
12083
+ * @type string
12084
+ */
12085
+ printName?: string;
11900
12086
  /**
11901
12087
  * 标签格式,zpl/tspl/cpcl/pos/esc/png
11902
12088
  *
@@ -13714,6 +13900,38 @@ export interface MobilePageResponse {
13714
13900
  */
13715
13901
  terminal?: string;
13716
13902
  }
13903
+ export interface ModelAssociationResponse {
13904
+ /**
13905
+ *
13906
+ *
13907
+ * @type number
13908
+ */
13909
+ dataCount?: number;
13910
+ /**
13911
+ *
13912
+ *
13913
+ * @type string
13914
+ */
13915
+ fieldKey?: string;
13916
+ /**
13917
+ *
13918
+ *
13919
+ * @type string
13920
+ */
13921
+ fieldType?: string;
13922
+ /**
13923
+ *
13924
+ *
13925
+ * @type string
13926
+ */
13927
+ modelKey?: string;
13928
+ /**
13929
+ *
13930
+ *
13931
+ * @type string
13932
+ */
13933
+ modelName?: string;
13934
+ }
13717
13935
  export interface ModelBriefInfo {
13718
13936
  /**
13719
13937
  * 种类
@@ -13745,6 +13963,12 @@ export interface ModelBriefInfo {
13745
13963
  * @type string
13746
13964
  */
13747
13965
  name?: string;
13966
+ /**
13967
+ * 模型是否启用数据权限(1:启用,0:禁用)
13968
+ *
13969
+ * @type number
13970
+ */
13971
+ permissionEnabled?: number;
13748
13972
  /**
13749
13973
  * 模型是否为子模型 (1 子模型, 0 非子模型)
13750
13974
  *
@@ -13925,6 +14149,12 @@ export interface ModelFieldInfo {
13925
14149
  * @type string
13926
14150
  */
13927
14151
  functionName?: string;
14152
+ /**
14153
+ * 字段映射类型
14154
+ *
14155
+ * @type string
14156
+ */
14157
+ mappingType?: string;
13928
14158
  /**
13929
14159
  * 原字段key
13930
14160
  *
@@ -14953,6 +15183,12 @@ export interface ModelPermissionRelationResponse {
14953
15183
  * @type string
14954
15184
  */
14955
15185
  modifyUserName?: string;
15186
+ /**
15187
+ * 模型是否启用数据权限(1:启用,0:禁用)
15188
+ *
15189
+ * @type number
15190
+ */
15191
+ permissionEnabled?: number;
14956
15192
  /**
14957
15193
  * 序号
14958
15194
  *
@@ -17851,6 +18087,12 @@ export interface OnlineFormStashRequest {
17851
18087
  * @type string
17852
18088
  */
17853
18089
  remark?: string;
18090
+ /**
18091
+ * 签名
18092
+ *
18093
+ * @type string
18094
+ */
18095
+ signature?: string;
17854
18096
  }
17855
18097
  export interface OnlineFormTmplLogRequest {
17856
18098
  /**
@@ -17959,6 +18201,12 @@ export interface OnlineFormTmplModelResponse {
17959
18201
  * @type string
17960
18202
  */
17961
18203
  code?: string;
18204
+ /**
18205
+ * 通信配置
18206
+ *
18207
+ * @type string
18208
+ */
18209
+ communicationConfig?: string;
17962
18210
  /**
17963
18211
  * 受控状态(UNCONTROLLED:期初,RUNNING:受控中,CONTROLLED:已受控)
17964
18212
  *
@@ -18121,6 +18369,12 @@ export interface OnlineFormTmplModelResponse {
18121
18369
  * @type string
18122
18370
  */
18123
18371
  script?: string;
18372
+ /**
18373
+ * 升级配置
18374
+ *
18375
+ * @type string
18376
+ */
18377
+ updateRemark?: string;
18124
18378
  /**
18125
18379
  * 版本
18126
18380
  *
@@ -18185,6 +18439,12 @@ export interface OnlineFormTmplRequest {
18185
18439
  * @type string
18186
18440
  */
18187
18441
  code?: string;
18442
+ /**
18443
+ * 通信配置
18444
+ *
18445
+ * @type string
18446
+ */
18447
+ communicationConfig?: string;
18188
18448
  /**
18189
18449
  * 是否默认版本 1是 0否
18190
18450
  *
@@ -18349,6 +18609,12 @@ export interface OnlineFormTmplResponse {
18349
18609
  * @type string
18350
18610
  */
18351
18611
  code?: string;
18612
+ /**
18613
+ * 通信配置
18614
+ *
18615
+ * @type string
18616
+ */
18617
+ communicationConfig?: string;
18352
18618
  /**
18353
18619
  * 受控状态(UNCONTROLLED:期初,RUNNING:受控中,CONTROLLED:已受控)
18354
18620
  *
@@ -18505,6 +18771,12 @@ export interface OnlineFormTmplResponse {
18505
18771
  * @type string
18506
18772
  */
18507
18773
  script?: string;
18774
+ /**
18775
+ * 升级配置
18776
+ *
18777
+ * @type string
18778
+ */
18779
+ updateRemark?: string;
18508
18780
  /**
18509
18781
  * 版本
18510
18782
  *
@@ -26605,12 +26877,24 @@ export interface QueryRefChainDataRequest {
26605
26877
  * @type string
26606
26878
  */
26607
26879
  dataIds?: string;
26880
+ /**
26881
+ * 条件表达式
26882
+ *
26883
+ * @type string
26884
+ */
26885
+ exp?: string;
26608
26886
  /**
26609
26887
  * 引用字段 key
26610
26888
  *
26611
26889
  * @type string
26612
26890
  */
26613
26891
  fieldKey?: string;
26892
+ /**
26893
+ * rdo 查询关键字
26894
+ *
26895
+ * @type string
26896
+ */
26897
+ keyword?: string;
26614
26898
  /**
26615
26899
  * 模型 key
26616
26900
  *
@@ -26629,6 +26913,12 @@ export interface QueryRefChainDataRequest {
26629
26913
  * @type number
26630
26914
  */
26631
26915
  pageSize?: number;
26916
+ /**
26917
+ * 查询条件
26918
+ *
26919
+ * @type IObject
26920
+ */
26921
+ query?: IObject;
26632
26922
  /**
26633
26923
  * 当前模型数据,当dataIds为空时,该值必传
26634
26924
  *
@@ -28364,7 +28654,7 @@ export interface SandboxConfigResponse {
28364
28654
  */
28365
28655
  pdaRoutePath?: string;
28366
28656
  /**
28367
- * 沙箱状态(INIT:开始创建,CREATE_FINISHED:创建完成,CREATE_FAILED:创建失败)
28657
+ * 沙箱状态(INIT:开始创建,CREATE_FINISHED:创建完成,CREATE_FAILED:创建失败,REMOVING:移除中)
28368
28658
  *
28369
28659
  * @type string
28370
28660
  */
@@ -29075,6 +29365,12 @@ export interface SelectItem {
29075
29365
  * @type boolean
29076
29366
  */
29077
29367
  includeNull?: boolean;
29368
+ /**
29369
+ * 映射类型(公式,函数等实际映射的类型)
29370
+ *
29371
+ * @type string
29372
+ */
29373
+ mappingType?: string;
29078
29374
  /**
29079
29375
  * 数据类型
29080
29376
  *
@@ -31739,6 +32035,12 @@ export interface UserGroupRelationRequest {
31739
32035
  * @type number
31740
32036
  */
31741
32037
  fieldPermissionEnabled?: number;
32038
+ /**
32039
+ * 数据权限关系,OR:或, AND:且
32040
+ *
32041
+ * @type string
32042
+ */
32043
+ operator?: string;
31742
32044
  /**
31743
32045
  * 关系id
31744
32046
  *
@@ -31843,6 +32145,12 @@ export interface UserGroupRelationResponse {
31843
32145
  * @type string
31844
32146
  */
31845
32147
  modifyUserName?: string;
32148
+ /**
32149
+ * 数据权限关系,OR:或, AND:且
32150
+ *
32151
+ * @type string
32152
+ */
32153
+ operator?: string;
31846
32154
  /**
31847
32155
  * 关系id
31848
32156
  *
@@ -33818,6 +34126,44 @@ export interface XmlSettingTableColum {
33818
34126
  */
33819
34127
  type?: string;
33820
34128
  }
34129
+ export interface modelDataAssociationRequest {
34130
+ /**
34131
+ * fieldKey
34132
+ *
34133
+ * @type string
34134
+ */
34135
+ fieldKey?: string;
34136
+ /**
34137
+ * fieldType
34138
+ *
34139
+ * @type string
34140
+ */
34141
+ fieldType?: string;
34142
+ /**
34143
+ * 数据id
34144
+ *
34145
+ * @type string
34146
+ */
34147
+ id?: string;
34148
+ /**
34149
+ * modelKey
34150
+ *
34151
+ * @type string
34152
+ */
34153
+ modelKey?: string;
34154
+ /**
34155
+ * 页码
34156
+ *
34157
+ * @type number
34158
+ */
34159
+ pageNo?: number;
34160
+ /**
34161
+ * 分页大小
34162
+ *
34163
+ * @type number
34164
+ */
34165
+ pageSize?: number;
34166
+ }
33821
34167
  export interface 发送消息DTO {
33822
34168
  /**
33823
34169
  * 邮件内容
@@ -1,3 +1,4 @@
1
+ import type { MedProService } from './apis/med-pro.service';
1
2
  import type { AppBranchService } from './apis/app-branch.service';
2
3
  import type { AppGlobalSettingsService } from './apis/app-global-settings.service';
3
4
  import type { AppGrantedUserService } from './apis/app-granted-user.service';
@@ -61,6 +62,7 @@ import type { FormRelateService } from './apis/formRelate.service';
61
62
  import type { FrontOperateLogService } from './apis/front-operate-log.service';
62
63
  import type { GlobalMethodService } from './apis/global-method.service';
63
64
  import type { I18NInfoService } from './apis/i18n-info.service';
65
+ import type { ImportReportService } from './apis/import-report.service';
64
66
  import type { InstanceRelationService } from './apis/instance-relation.service';
65
67
  import type { IpaasService } from './apis/ipaas.service';
66
68
  import type { JobService } from './apis/job.service';
@@ -143,6 +145,7 @@ import type { SignLogService } from './apis/sign-log.service';
143
145
  import type { SignatureService } from './apis/signature.service';
144
146
  import type { SqlViewModelService } from './apis/sql-view-model.service';
145
147
  import type { SqlViewService } from './apis/sql-view.service';
148
+ import type { SsService } from './apis/ss.service';
146
149
  import type { StashService } from './apis/stash.service';
147
150
  import type { SubModelProcessService } from './apis/sub-model-process.service';
148
151
  import type { SysConfigService } from './apis/sys-config.service';
@@ -160,6 +163,7 @@ import type { WebpageService } from './apis/webpage.service';
160
163
  import type { ApiService } from './apis/api.service';
161
164
 
162
165
  export interface ApiManage {
166
+ readonly medPro: MedProService;
163
167
  readonly appBranch: AppBranchService;
164
168
  readonly appGlobalSettings: AppGlobalSettingsService;
165
169
  readonly appGrantedUser: AppGrantedUserService;
@@ -223,6 +227,7 @@ export interface ApiManage {
223
227
  readonly frontOperateLog: FrontOperateLogService;
224
228
  readonly globalMethod: GlobalMethodService;
225
229
  readonly i18NInfo: I18NInfoService;
230
+ readonly importReport: ImportReportService;
226
231
  readonly instanceRelation: InstanceRelationService;
227
232
  readonly ipaas: IpaasService;
228
233
  readonly job: JobService;
@@ -305,6 +310,7 @@ export interface ApiManage {
305
310
  readonly signature: SignatureService;
306
311
  readonly sqlViewModel: SqlViewModelService;
307
312
  readonly sqlView: SqlViewService;
313
+ readonly ss: SsService;
308
314
  readonly stash: StashService;
309
315
  readonly subModelProcess: SubModelProcessService;
310
316
  readonly sysConfig: SysConfigService;
@@ -334,6 +334,11 @@ export const apiConfig = [
334
334
  method: "postExport",
335
335
  path: "export"
336
336
  },
337
+ {
338
+ mode: "get",
339
+ method: "getFlowCategoryTree",
340
+ path: "flowCategoryTree"
341
+ },
337
342
  {
338
343
  mode: "post",
339
344
  method: "postImport",
@@ -1,5 +1,10 @@
1
1
  import type { AxiosRequestConfig } from 'axios';
2
- import type { ResponseEntity, FlowMainResp, FlowUpdateReq } from '../entities';
2
+ import type {
3
+ ResponseEntity,
4
+ FlowCategoryTree,
5
+ FlowMainResp,
6
+ FlowUpdateReq,
7
+ } from '../entities';
3
8
 
4
9
  export interface postImportQuery {
5
10
  /**
@@ -57,6 +62,12 @@ export interface FlowService {
57
62
  * 导出
58
63
  */
59
64
  postExport(config?: Partial<AxiosRequestConfig>): Promise<ResponseEntity>;
65
+ /**
66
+ * 流程和分类关联树
67
+ */
68
+ getFlowCategoryTree(
69
+ config?: Partial<AxiosRequestConfig>,
70
+ ): Promise<FlowCategoryTree[]>;
60
71
  /**
61
72
  * 导入
62
73
  */
@@ -1100,6 +1100,32 @@ export interface FlowCategoryResponse {
1100
1100
  */
1101
1101
  sysBuiltin?: number;
1102
1102
  }
1103
+ export interface FlowCategoryTree {
1104
+ /**
1105
+ * 子节点
1106
+ *
1107
+ * @type FlowCategoryTree[]
1108
+ */
1109
+ child?: FlowCategoryTree[];
1110
+ /**
1111
+ * 数据id
1112
+ *
1113
+ * @type string
1114
+ */
1115
+ id?: string;
1116
+ /**
1117
+ * 名称
1118
+ *
1119
+ * @type string
1120
+ */
1121
+ name?: string;
1122
+ /**
1123
+ * 类型:flow 流程、category 分类
1124
+ *
1125
+ * @type string
1126
+ */
1127
+ type?: string;
1128
+ }
1103
1129
  export interface FlowCreateWithCategoryReq {
1104
1130
  /**
1105
1131
  * 分类id
@@ -5526,12 +5526,6 @@ export const apiConfig = [
5526
5526
  path: "knowledge-base/findByIds",
5527
5527
  hasQuery: true
5528
5528
  },
5529
- {
5530
- mode: "get",
5531
- method: "getLicenseModuleAuth",
5532
- path: "license/moduleAuth",
5533
- hasQuery: true
5534
- },
5535
5529
  {
5536
5530
  mode: "post",
5537
5531
  method: "postLoginLogUserLoginLogPage",
@@ -498,12 +498,6 @@ export interface getKnowledgeBaseFindByIdsQuery {
498
498
  */
499
499
  ids: string;
500
500
  }
501
- export interface getLicenseModuleAuthQuery {
502
- /**
503
- * 授权模块
504
- */
505
- module?: string;
506
- }
507
501
  export interface getLoginSsoOauth2AuthorizeQuery {
508
502
  /**
509
503
  * 授权码
@@ -1227,13 +1221,6 @@ export interface ApiService {
1227
1221
  query: getKnowledgeBaseFindByIdsQuery,
1228
1222
  config?: Partial<AxiosRequestConfig>,
1229
1223
  ): Promise<KnowledgeBaseDTO[]>;
1230
- /**
1231
- * 判断对应模块是否已进行授权
1232
- */
1233
- getLicenseModuleAuth(
1234
- query: getLicenseModuleAuthQuery,
1235
- config?: Partial<AxiosRequestConfig>,
1236
- ): Promise<boolean>;
1237
1224
  /**
1238
1225
  * 用户登录日志分页查询
1239
1226
  */
@@ -203,6 +203,10 @@ export interface getModelMetaListQuery {
203
203
  *
204
204
  */
205
205
  modifyUserName?: string;
206
+ /**
207
+ * 所属模块(实体、枚举、web页面 、view_model_module/视图模型模块 、data_model/数据模型模块、document_module/单据)
208
+ */
209
+ module?: string;
206
210
  /**
207
211
  *
208
212
  */