@gct-paas/api 0.1.6-dev.11 → 0.1.6-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 +20 -101
- package/es/apaas/service/apis/api.service.d.ts +4 -0
- package/es/apaas/service/apis/app-org.service.d.ts +0 -4
- package/es/apaas/service/apis/category.service.d.ts +16 -0
- package/es/apaas/service/apis/edhr-instance.service.d.ts +8 -8
- package/es/apaas/service/apis/enum-model-field.service.d.ts +0 -8
- package/es/apaas/service/apis/medPro.service.d.ts +0 -108
- package/es/apaas/service/apis/model-method.service.d.ts +1 -19
- package/es/apaas/service/apis/online-form-instance.service.d.ts +8 -12
- package/es/apaas/service/apis/online-form-tmpl.service.d.ts +1 -18
- package/es/apaas/service/apis/ss.service.d.ts +0 -9
- package/es/apaas/service/entities.d.ts +13 -123
- package/es/apaas/service/index.d.ts +2 -0
- package/es/platform/service/api-config.mjs +0 -22
- package/es/platform/service/apis/api.service.d.ts +1 -21
- package/es/platform/service/apis/app.service.d.ts +0 -4
- package/es/platform/service/apis/dashboard.service.d.ts +4 -0
- package/es/platform/service/apis/login-log.service.d.ts +0 -13
- package/es/platform/service/apis/org.service.d.ts +4 -0
- package/es/platform/service/apis/plat.service.d.ts +0 -7
- package/es/platform/service/apis/tenant.service.d.ts +4 -0
- package/es/platform/service/entities.d.ts +22 -386
- package/package.json +1 -1
|
@@ -88,7 +88,7 @@ export interface AcLicenseResponse {
|
|
|
88
88
|
}
|
|
89
89
|
export interface AccountConfig {
|
|
90
90
|
/**
|
|
91
|
-
* 应用类型 枚举
|
|
91
|
+
* 应用类型 枚举(钉钉 DINGDING,企微 QIYEWEIXIN,飞书 FEISHU)
|
|
92
92
|
*
|
|
93
93
|
* @type string
|
|
94
94
|
*/
|
|
@@ -546,9 +546,6 @@ export interface AgentResponse {
|
|
|
546
546
|
*/
|
|
547
547
|
usage?: string;
|
|
548
548
|
}
|
|
549
|
-
export interface Annotation {
|
|
550
|
-
// 暂无属性
|
|
551
|
-
}
|
|
552
549
|
export interface ApiInfo {
|
|
553
550
|
/**
|
|
554
551
|
*
|
|
@@ -2469,74 +2466,6 @@ export interface AppSettingRequest {
|
|
|
2469
2466
|
*/
|
|
2470
2467
|
type?: string;
|
|
2471
2468
|
}
|
|
2472
|
-
export interface ApplicationContext {
|
|
2473
|
-
/**
|
|
2474
|
-
*
|
|
2475
|
-
*
|
|
2476
|
-
* @type string
|
|
2477
|
-
*/
|
|
2478
|
-
applicationName?: string;
|
|
2479
|
-
/**
|
|
2480
|
-
*
|
|
2481
|
-
*
|
|
2482
|
-
* @type AutowireCapableBeanFactory
|
|
2483
|
-
*/
|
|
2484
|
-
autowireCapableBeanFactory?: AutowireCapableBeanFactory;
|
|
2485
|
-
/**
|
|
2486
|
-
*
|
|
2487
|
-
*
|
|
2488
|
-
* @type number
|
|
2489
|
-
*/
|
|
2490
|
-
beanDefinitionCount?: number;
|
|
2491
|
-
/**
|
|
2492
|
-
*
|
|
2493
|
-
*
|
|
2494
|
-
* @type string[]
|
|
2495
|
-
*/
|
|
2496
|
-
beanDefinitionNames?: string[];
|
|
2497
|
-
/**
|
|
2498
|
-
*
|
|
2499
|
-
*
|
|
2500
|
-
* @type ClassLoader
|
|
2501
|
-
*/
|
|
2502
|
-
classLoader?: ClassLoader;
|
|
2503
|
-
/**
|
|
2504
|
-
*
|
|
2505
|
-
*
|
|
2506
|
-
* @type string
|
|
2507
|
-
*/
|
|
2508
|
-
displayName?: string;
|
|
2509
|
-
/**
|
|
2510
|
-
*
|
|
2511
|
-
*
|
|
2512
|
-
* @type Environment
|
|
2513
|
-
*/
|
|
2514
|
-
environment?: Environment;
|
|
2515
|
-
/**
|
|
2516
|
-
*
|
|
2517
|
-
*
|
|
2518
|
-
* @type string
|
|
2519
|
-
*/
|
|
2520
|
-
id?: string;
|
|
2521
|
-
/**
|
|
2522
|
-
*
|
|
2523
|
-
*
|
|
2524
|
-
* @type ApplicationContext
|
|
2525
|
-
*/
|
|
2526
|
-
parent?: ApplicationContext;
|
|
2527
|
-
/**
|
|
2528
|
-
*
|
|
2529
|
-
*
|
|
2530
|
-
* @type BeanFactory
|
|
2531
|
-
*/
|
|
2532
|
-
parentBeanFactory?: BeanFactory;
|
|
2533
|
-
/**
|
|
2534
|
-
*
|
|
2535
|
-
*
|
|
2536
|
-
* @type number
|
|
2537
|
-
*/
|
|
2538
|
-
startupDate?: number;
|
|
2539
|
-
}
|
|
2540
2469
|
export interface AssetsResponse {
|
|
2541
2470
|
/**
|
|
2542
2471
|
* 分类ID
|
|
@@ -2903,9 +2832,6 @@ export interface AuthConfig {
|
|
|
2903
2832
|
*/
|
|
2904
2833
|
title?: string;
|
|
2905
2834
|
}
|
|
2906
|
-
export interface AutowireCapableBeanFactory {
|
|
2907
|
-
// 暂无属性
|
|
2908
|
-
}
|
|
2909
2835
|
export interface BIChartConditionDTO {
|
|
2910
2836
|
/**
|
|
2911
2837
|
*
|
|
@@ -3178,9 +3104,6 @@ export interface Base64UploadPlatFormRequest {
|
|
|
3178
3104
|
*/
|
|
3179
3105
|
filename?: string;
|
|
3180
3106
|
}
|
|
3181
|
-
export interface BeanFactory {
|
|
3182
|
-
// 暂无属性
|
|
3183
|
-
}
|
|
3184
3107
|
export interface BiDataSetPreviewRequest {
|
|
3185
3108
|
/**
|
|
3186
3109
|
* 描述
|
|
@@ -3809,14 +3732,6 @@ export interface CSV数据源表实体类 {
|
|
|
3809
3732
|
*/
|
|
3810
3733
|
user_id?: string;
|
|
3811
3734
|
}
|
|
3812
|
-
export interface CardLoginConfig {
|
|
3813
|
-
/**
|
|
3814
|
-
* 是否启用
|
|
3815
|
-
*
|
|
3816
|
-
* @type number
|
|
3817
|
-
*/
|
|
3818
|
-
enabled?: number;
|
|
3819
|
-
}
|
|
3820
3735
|
export interface Category {
|
|
3821
3736
|
/**
|
|
3822
3737
|
*
|
|
@@ -4005,38 +3920,6 @@ export interface CategoryResponse {
|
|
|
4005
3920
|
*/
|
|
4006
3921
|
sysBuiltin?: number;
|
|
4007
3922
|
}
|
|
4008
|
-
export interface ClassLoader {
|
|
4009
|
-
/**
|
|
4010
|
-
*
|
|
4011
|
-
*
|
|
4012
|
-
* @type Package[]
|
|
4013
|
-
*/
|
|
4014
|
-
definedPackages?: Package[];
|
|
4015
|
-
/**
|
|
4016
|
-
*
|
|
4017
|
-
*
|
|
4018
|
-
* @type string
|
|
4019
|
-
*/
|
|
4020
|
-
name?: string;
|
|
4021
|
-
/**
|
|
4022
|
-
*
|
|
4023
|
-
*
|
|
4024
|
-
* @type ClassLoader
|
|
4025
|
-
*/
|
|
4026
|
-
parent?: ClassLoader;
|
|
4027
|
-
/**
|
|
4028
|
-
*
|
|
4029
|
-
*
|
|
4030
|
-
* @type boolean
|
|
4031
|
-
*/
|
|
4032
|
-
registeredAsParallelCapable?: boolean;
|
|
4033
|
-
/**
|
|
4034
|
-
*
|
|
4035
|
-
*
|
|
4036
|
-
* @type Module
|
|
4037
|
-
*/
|
|
4038
|
-
unnamedModule?: Module;
|
|
4039
|
-
}
|
|
4040
3923
|
export interface ClientsDto {
|
|
4041
3924
|
/**
|
|
4042
3925
|
*
|
|
@@ -6285,20 +6168,6 @@ export interface Echart图表主题查询参数 {
|
|
|
6285
6168
|
*/
|
|
6286
6169
|
user_id?: string;
|
|
6287
6170
|
}
|
|
6288
|
-
export interface Environment {
|
|
6289
|
-
/**
|
|
6290
|
-
*
|
|
6291
|
-
*
|
|
6292
|
-
* @type string[]
|
|
6293
|
-
*/
|
|
6294
|
-
activeProfiles?: string[];
|
|
6295
|
-
/**
|
|
6296
|
-
*
|
|
6297
|
-
*
|
|
6298
|
-
* @type string[]
|
|
6299
|
-
*/
|
|
6300
|
-
defaultProfiles?: string[];
|
|
6301
|
-
}
|
|
6302
6171
|
export interface ExcelOrgUserSearchReq {
|
|
6303
6172
|
/**
|
|
6304
6173
|
* 是否显示下级
|
|
@@ -7344,12 +7213,6 @@ export interface FileTaskResponse {
|
|
|
7344
7213
|
* @type string
|
|
7345
7214
|
*/
|
|
7346
7215
|
name?: string;
|
|
7347
|
-
/**
|
|
7348
|
-
*
|
|
7349
|
-
*
|
|
7350
|
-
* @type IObject
|
|
7351
|
-
*/
|
|
7352
|
-
params?: IObject;
|
|
7353
7216
|
/**
|
|
7354
7217
|
* 关联数据id(edhr实模板ID)
|
|
7355
7218
|
*
|
|
@@ -7832,18 +7695,6 @@ export interface InternalMessageResponse {
|
|
|
7832
7695
|
* @type string
|
|
7833
7696
|
*/
|
|
7834
7697
|
receiverId?: string;
|
|
7835
|
-
/**
|
|
7836
|
-
* 跳转配置: {"WEB":"菜单id","MOBILE":"菜单id","PAD":"菜单id"}
|
|
7837
|
-
*
|
|
7838
|
-
* @type string
|
|
7839
|
-
*/
|
|
7840
|
-
routerConfig?: string;
|
|
7841
|
-
/**
|
|
7842
|
-
* 跳转参数:由调用全局方法方传递
|
|
7843
|
-
*
|
|
7844
|
-
* @type string
|
|
7845
|
-
*/
|
|
7846
|
-
routerParams?: string;
|
|
7847
7698
|
/**
|
|
7848
7699
|
* 是否支持跳转
|
|
7849
7700
|
*
|
|
@@ -8653,7 +8504,7 @@ export interface LoginModeConfig {
|
|
|
8653
8504
|
*/
|
|
8654
8505
|
address?: string;
|
|
8655
8506
|
/**
|
|
8656
|
-
* 登录方式类型 枚举(ACCOUNT/ 账号登录,DOMAIN_ACCOUNT/域账号密码登录,MOBILE
|
|
8507
|
+
* 登录方式类型 枚举(ACCOUNT/ 账号登录,DOMAIN_ACCOUNT/域账号密码登录,MOBILE)
|
|
8657
8508
|
*
|
|
8658
8509
|
* @type string
|
|
8659
8510
|
*/
|
|
@@ -9825,73 +9676,6 @@ export interface ModelResponse {
|
|
|
9825
9676
|
*/
|
|
9826
9677
|
providerName?: string;
|
|
9827
9678
|
}
|
|
9828
|
-
export interface Module {
|
|
9829
|
-
/**
|
|
9830
|
-
*
|
|
9831
|
-
*
|
|
9832
|
-
* @type Annotation[]
|
|
9833
|
-
*/
|
|
9834
|
-
annotations?: Annotation[];
|
|
9835
|
-
/**
|
|
9836
|
-
*
|
|
9837
|
-
*
|
|
9838
|
-
* @type ClassLoader
|
|
9839
|
-
*/
|
|
9840
|
-
classLoader?: ClassLoader;
|
|
9841
|
-
/**
|
|
9842
|
-
*
|
|
9843
|
-
*
|
|
9844
|
-
* @type Annotation[]
|
|
9845
|
-
*/
|
|
9846
|
-
declaredAnnotations?: Annotation[];
|
|
9847
|
-
/**
|
|
9848
|
-
*
|
|
9849
|
-
*
|
|
9850
|
-
* @type ModuleDescriptor
|
|
9851
|
-
*/
|
|
9852
|
-
descriptor?: ModuleDescriptor;
|
|
9853
|
-
/**
|
|
9854
|
-
*
|
|
9855
|
-
*
|
|
9856
|
-
* @type ModuleLayer
|
|
9857
|
-
*/
|
|
9858
|
-
layer?: ModuleLayer;
|
|
9859
|
-
/**
|
|
9860
|
-
*
|
|
9861
|
-
*
|
|
9862
|
-
* @type string
|
|
9863
|
-
*/
|
|
9864
|
-
name?: string;
|
|
9865
|
-
/**
|
|
9866
|
-
*
|
|
9867
|
-
*
|
|
9868
|
-
* @type boolean
|
|
9869
|
-
*/
|
|
9870
|
-
named?: boolean;
|
|
9871
|
-
/**
|
|
9872
|
-
*
|
|
9873
|
-
*
|
|
9874
|
-
* @type string[]
|
|
9875
|
-
*/
|
|
9876
|
-
packages?: string[];
|
|
9877
|
-
}
|
|
9878
|
-
export interface ModuleDescriptor {
|
|
9879
|
-
/**
|
|
9880
|
-
*
|
|
9881
|
-
*
|
|
9882
|
-
* @type boolean
|
|
9883
|
-
*/
|
|
9884
|
-
automatic?: boolean;
|
|
9885
|
-
/**
|
|
9886
|
-
*
|
|
9887
|
-
*
|
|
9888
|
-
* @type boolean
|
|
9889
|
-
*/
|
|
9890
|
-
open?: boolean;
|
|
9891
|
-
}
|
|
9892
|
-
export interface ModuleLayer {
|
|
9893
|
-
// 暂无属性
|
|
9894
|
-
}
|
|
9895
9679
|
export interface MqttPropertiesDTO {
|
|
9896
9680
|
/**
|
|
9897
9681
|
* 密码
|
|
@@ -11033,12 +10817,6 @@ export interface OrgAddOrUpdateUserRequest {
|
|
|
11033
10817
|
username?: string;
|
|
11034
10818
|
}
|
|
11035
10819
|
export interface OrgBaseInfo {
|
|
11036
|
-
/**
|
|
11037
|
-
*
|
|
11038
|
-
*
|
|
11039
|
-
* @type string
|
|
11040
|
-
*/
|
|
11041
|
-
createTime?: string;
|
|
11042
10820
|
/**
|
|
11043
10821
|
*
|
|
11044
10822
|
*
|
|
@@ -11069,12 +10847,6 @@ export interface OrgBaseInfo {
|
|
|
11069
10847
|
* @type string
|
|
11070
10848
|
*/
|
|
11071
10849
|
parentId?: string;
|
|
11072
|
-
/**
|
|
11073
|
-
*
|
|
11074
|
-
*
|
|
11075
|
-
* @type string
|
|
11076
|
-
*/
|
|
11077
|
-
type?: string;
|
|
11078
10850
|
}
|
|
11079
10851
|
export interface OrgConfig {
|
|
11080
10852
|
/**
|
|
@@ -11884,68 +11656,6 @@ export interface OrgUserSearchRequest {
|
|
|
11884
11656
|
*/
|
|
11885
11657
|
username?: string;
|
|
11886
11658
|
}
|
|
11887
|
-
export interface Package {
|
|
11888
|
-
/**
|
|
11889
|
-
*
|
|
11890
|
-
*
|
|
11891
|
-
* @type Annotation[]
|
|
11892
|
-
*/
|
|
11893
|
-
annotations?: Annotation[];
|
|
11894
|
-
/**
|
|
11895
|
-
*
|
|
11896
|
-
*
|
|
11897
|
-
* @type Annotation[]
|
|
11898
|
-
*/
|
|
11899
|
-
declaredAnnotations?: Annotation[];
|
|
11900
|
-
/**
|
|
11901
|
-
*
|
|
11902
|
-
*
|
|
11903
|
-
* @type string
|
|
11904
|
-
*/
|
|
11905
|
-
implementationTitle?: string;
|
|
11906
|
-
/**
|
|
11907
|
-
*
|
|
11908
|
-
*
|
|
11909
|
-
* @type string
|
|
11910
|
-
*/
|
|
11911
|
-
implementationVendor?: string;
|
|
11912
|
-
/**
|
|
11913
|
-
*
|
|
11914
|
-
*
|
|
11915
|
-
* @type string
|
|
11916
|
-
*/
|
|
11917
|
-
implementationVersion?: string;
|
|
11918
|
-
/**
|
|
11919
|
-
*
|
|
11920
|
-
*
|
|
11921
|
-
* @type string
|
|
11922
|
-
*/
|
|
11923
|
-
name?: string;
|
|
11924
|
-
/**
|
|
11925
|
-
*
|
|
11926
|
-
*
|
|
11927
|
-
* @type boolean
|
|
11928
|
-
*/
|
|
11929
|
-
sealed?: boolean;
|
|
11930
|
-
/**
|
|
11931
|
-
*
|
|
11932
|
-
*
|
|
11933
|
-
* @type string
|
|
11934
|
-
*/
|
|
11935
|
-
specificationTitle?: string;
|
|
11936
|
-
/**
|
|
11937
|
-
*
|
|
11938
|
-
*
|
|
11939
|
-
* @type string
|
|
11940
|
-
*/
|
|
11941
|
-
specificationVendor?: string;
|
|
11942
|
-
/**
|
|
11943
|
-
*
|
|
11944
|
-
*
|
|
11945
|
-
* @type string
|
|
11946
|
-
*/
|
|
11947
|
-
specificationVersion?: string;
|
|
11948
|
-
}
|
|
11949
11659
|
export interface PackageJson {
|
|
11950
11660
|
/**
|
|
11951
11661
|
*
|
|
@@ -15191,6 +14901,12 @@ export interface PrintAdapterDTO {
|
|
|
15191
14901
|
* @type string
|
|
15192
14902
|
*/
|
|
15193
14903
|
env?: string;
|
|
14904
|
+
/**
|
|
14905
|
+
* 打印控制参数
|
|
14906
|
+
*
|
|
14907
|
+
* @type IObject
|
|
14908
|
+
*/
|
|
14909
|
+
param?: IObject;
|
|
15194
14910
|
/**
|
|
15195
14911
|
* 触发打印的应用id
|
|
15196
14912
|
*
|
|
@@ -15285,6 +15001,12 @@ export interface PrintLogDto {
|
|
|
15285
15001
|
* @type string
|
|
15286
15002
|
*/
|
|
15287
15003
|
macAddress?: string;
|
|
15004
|
+
/**
|
|
15005
|
+
*
|
|
15006
|
+
*
|
|
15007
|
+
* @type IObject
|
|
15008
|
+
*/
|
|
15009
|
+
param?: IObject;
|
|
15288
15010
|
/**
|
|
15289
15011
|
*
|
|
15290
15012
|
*
|
|
@@ -15511,6 +15233,12 @@ export interface PrintLogResponse {
|
|
|
15511
15233
|
* @type string
|
|
15512
15234
|
*/
|
|
15513
15235
|
modifyUserName?: string;
|
|
15236
|
+
/**
|
|
15237
|
+
* 打印控制参数
|
|
15238
|
+
*
|
|
15239
|
+
* @type IObject
|
|
15240
|
+
*/
|
|
15241
|
+
param?: IObject;
|
|
15514
15242
|
/**
|
|
15515
15243
|
* 触发打印的应用id
|
|
15516
15244
|
*
|
|
@@ -16324,74 +16052,6 @@ export interface QueryBean {
|
|
|
16324
16052
|
*/
|
|
16325
16053
|
sql?: string;
|
|
16326
16054
|
}
|
|
16327
|
-
export interface RedirectView {
|
|
16328
|
-
/**
|
|
16329
|
-
*
|
|
16330
|
-
*
|
|
16331
|
-
* @type ApplicationContext
|
|
16332
|
-
*/
|
|
16333
|
-
applicationContext?: ApplicationContext;
|
|
16334
|
-
/**
|
|
16335
|
-
*
|
|
16336
|
-
*
|
|
16337
|
-
* @type IObject
|
|
16338
|
-
*/
|
|
16339
|
-
attributesMap?: IObject;
|
|
16340
|
-
/**
|
|
16341
|
-
*
|
|
16342
|
-
*
|
|
16343
|
-
* @type string
|
|
16344
|
-
*/
|
|
16345
|
-
beanName?: string;
|
|
16346
|
-
/**
|
|
16347
|
-
*
|
|
16348
|
-
*
|
|
16349
|
-
* @type string
|
|
16350
|
-
*/
|
|
16351
|
-
contentType?: string;
|
|
16352
|
-
/**
|
|
16353
|
-
*
|
|
16354
|
-
*
|
|
16355
|
-
* @type boolean
|
|
16356
|
-
*/
|
|
16357
|
-
exposePathVariables?: boolean;
|
|
16358
|
-
/**
|
|
16359
|
-
*
|
|
16360
|
-
*
|
|
16361
|
-
* @type string[]
|
|
16362
|
-
*/
|
|
16363
|
-
hosts?: string[];
|
|
16364
|
-
/**
|
|
16365
|
-
*
|
|
16366
|
-
*
|
|
16367
|
-
* @type boolean
|
|
16368
|
-
*/
|
|
16369
|
-
propagateQueryProperties?: boolean;
|
|
16370
|
-
/**
|
|
16371
|
-
*
|
|
16372
|
-
*
|
|
16373
|
-
* @type boolean
|
|
16374
|
-
*/
|
|
16375
|
-
redirectView?: boolean;
|
|
16376
|
-
/**
|
|
16377
|
-
*
|
|
16378
|
-
*
|
|
16379
|
-
* @type string
|
|
16380
|
-
*/
|
|
16381
|
-
requestContextAttribute?: string;
|
|
16382
|
-
/**
|
|
16383
|
-
*
|
|
16384
|
-
*
|
|
16385
|
-
* @type IObject
|
|
16386
|
-
*/
|
|
16387
|
-
staticAttributes?: IObject;
|
|
16388
|
-
/**
|
|
16389
|
-
*
|
|
16390
|
-
*
|
|
16391
|
-
* @type string
|
|
16392
|
-
*/
|
|
16393
|
-
url?: string;
|
|
16394
|
-
}
|
|
16395
16055
|
export interface RegexpRequest {
|
|
16396
16056
|
/**
|
|
16397
16057
|
* 正则名称
|
|
@@ -19140,7 +18800,7 @@ export interface ThirdAppConfigReq {
|
|
|
19140
18800
|
*/
|
|
19141
18801
|
appId?: string;
|
|
19142
18802
|
/**
|
|
19143
|
-
* 登录方式类型 枚举
|
|
18803
|
+
* 登录方式类型 枚举(QIYEWEIXIN/ 企微登录,FEISHU/飞书登录,DINGDING/钉钉登录 )
|
|
19144
18804
|
*
|
|
19145
18805
|
* @type string
|
|
19146
18806
|
*/
|
|
@@ -19306,7 +18966,7 @@ export interface ThirdPartyLoginConfig {
|
|
|
19306
18966
|
*/
|
|
19307
18967
|
appId?: string;
|
|
19308
18968
|
/**
|
|
19309
|
-
* 登录方式类型 枚举
|
|
18969
|
+
* 登录方式类型 枚举(QIYEWEIXIN/ 企微登录,FEISHU/飞书登录,DINGDING/钉钉登录 )
|
|
19310
18970
|
*
|
|
19311
18971
|
* @type string
|
|
19312
18972
|
*/
|
|
@@ -19889,12 +19549,6 @@ export interface UserBaseInfo {
|
|
|
19889
19549
|
username?: string;
|
|
19890
19550
|
}
|
|
19891
19551
|
export interface UserBaseReq {
|
|
19892
|
-
/**
|
|
19893
|
-
*
|
|
19894
|
-
*
|
|
19895
|
-
* @type string
|
|
19896
|
-
*/
|
|
19897
|
-
authCode?: string;
|
|
19898
19552
|
/**
|
|
19899
19553
|
* 授权code
|
|
19900
19554
|
*
|
|
@@ -19913,18 +19567,6 @@ export interface UserBaseReq {
|
|
|
19913
19567
|
* @type string
|
|
19914
19568
|
*/
|
|
19915
19569
|
password?: string;
|
|
19916
|
-
/**
|
|
19917
|
-
*
|
|
19918
|
-
*
|
|
19919
|
-
* @type string
|
|
19920
|
-
*/
|
|
19921
|
-
referer?: string;
|
|
19922
|
-
/**
|
|
19923
|
-
*
|
|
19924
|
-
*
|
|
19925
|
-
* @type string
|
|
19926
|
-
*/
|
|
19927
|
-
source?: string;
|
|
19928
19570
|
/**
|
|
19929
19571
|
* 账号
|
|
19930
19572
|
*
|
|
@@ -21871,12 +21513,6 @@ export interface UserTenantDTO {
|
|
|
21871
21513
|
* @type string
|
|
21872
21514
|
*/
|
|
21873
21515
|
id?: string;
|
|
21874
|
-
/**
|
|
21875
|
-
* 是否最后登录租户,0:否 1:是
|
|
21876
|
-
*
|
|
21877
|
-
* @type number
|
|
21878
|
-
*/
|
|
21879
|
-
latestLogin?: number;
|
|
21880
21516
|
/**
|
|
21881
21517
|
* 直属上级id
|
|
21882
21518
|
*
|