szpt-driver-api 1.0.86 → 1.0.88

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/auth.d.ts CHANGED
@@ -659,6 +659,16 @@ export declare class IdCardLoginForm {
659
659
  /** 手机号码 */
660
660
  phone?: string;
661
661
  }
662
+ export declare class ImportUserResult {
663
+ failDetails: UserImportResultDetail[];
664
+ /** @format int32 */
665
+ failTotal: number;
666
+ successDetails: UserImportResultDetail[];
667
+ /** @format int32 */
668
+ successTotal: number;
669
+ /** @format int32 */
670
+ total: number;
671
+ }
662
672
  export declare type InputStream = any;
663
673
  export declare type JsonNode = any;
664
674
  export declare class JwtLoginForm {
@@ -1136,6 +1146,178 @@ export declare class PermissionOptions {
1136
1146
  /** 是否仅警员可用 */
1137
1147
  policeOnly: boolean;
1138
1148
  }
1149
+ export declare class PersonEarlyWarnCertification {
1150
+ /** 证书电子件 */
1151
+ certFileUrl: string;
1152
+ /** 证书名称 */
1153
+ certName: string;
1154
+ /** 证书编号 */
1155
+ certNumber: string;
1156
+ /** 证书类型 */
1157
+ certType: string;
1158
+ /**
1159
+ * 距离失效天数
1160
+ * @format int32
1161
+ */
1162
+ daysToExpire: number;
1163
+ /**
1164
+ * 失效时间
1165
+ * @format int64
1166
+ */
1167
+ expirationTime: number;
1168
+ /** 是否开启预警 */
1169
+ ifNotify: boolean;
1170
+ /**
1171
+ * 证书获得时间
1172
+ * @format int64
1173
+ */
1174
+ obtainDate: number;
1175
+ }
1176
+ export declare class PersonEarlyWarnCertifications {
1177
+ /** 预警证书信息 */
1178
+ certificates: PersonEarlyWarnCertification[];
1179
+ /**
1180
+ * 预警证书数量
1181
+ * @format int32
1182
+ */
1183
+ certificatesNumbers: number;
1184
+ /**
1185
+ * 距离最早过期天数
1186
+ * @format int32
1187
+ */
1188
+ daysToExpire: number;
1189
+ departmentCode: string;
1190
+ /**
1191
+ * 最早过期日期
1192
+ * @format int64
1193
+ */
1194
+ earliestExpirationDate: number;
1195
+ /**
1196
+ * 提前预警日期
1197
+ * @format int64
1198
+ */
1199
+ earlyWarnDays: number;
1200
+ /** 姓名 */
1201
+ realName: string;
1202
+ /** 用户名 */
1203
+ userName: string;
1204
+ }
1205
+ export declare class PersonEarlyWarnContract {
1206
+ /** 电子合同 */
1207
+ contractFileUrl: string;
1208
+ /** 合同号 */
1209
+ contractNumber: string;
1210
+ /** 合同类型 */
1211
+ contractType: string;
1212
+ /**
1213
+ * 距离失效天数
1214
+ * @format int32
1215
+ */
1216
+ daysToExpire: number;
1217
+ /**
1218
+ * 合同结束时间
1219
+ * @format int64
1220
+ */
1221
+ endDate: number;
1222
+ /** 是否预警 */
1223
+ ifNotify: boolean;
1224
+ /**
1225
+ * 合同开始时间
1226
+ * @format int64
1227
+ */
1228
+ startDate: number;
1229
+ }
1230
+ export declare class PersonEarlyWarnContracts {
1231
+ /**
1232
+ * 到期合同数量
1233
+ * @format int32
1234
+ */
1235
+ contractNumbers: number;
1236
+ /** 预警合同信息 */
1237
+ contracts: PersonEarlyWarnContract[];
1238
+ /**
1239
+ * 距离最早到期天数
1240
+ * @format int32
1241
+ */
1242
+ daysToEnd: number;
1243
+ departmentCode: string;
1244
+ /**
1245
+ * 最早到期日期
1246
+ * @format int64
1247
+ */
1248
+ earliestEndDate: number;
1249
+ /**
1250
+ * 提前预警日期
1251
+ * @format int64
1252
+ */
1253
+ earlyWarnDays: number;
1254
+ /** 姓名 */
1255
+ realName: string;
1256
+ /** 用户名 */
1257
+ userName: string;
1258
+ }
1259
+ export declare class PersonEarlyWarnOverAge {
1260
+ /**
1261
+ * 年龄
1262
+ * @format int32
1263
+ */
1264
+ age: number;
1265
+ /**
1266
+ * 超龄阈值
1267
+ * @format int32
1268
+ */
1269
+ ageThreshold: number;
1270
+ /**
1271
+ * 出生日期
1272
+ * @format int64
1273
+ */
1274
+ birthday: number;
1275
+ departmentCode: string;
1276
+ /** 用工类型 */
1277
+ employmentType: string;
1278
+ /** 身份证号 */
1279
+ idCardNumber: string;
1280
+ /**
1281
+ * 超龄月数
1282
+ * @format int32
1283
+ */
1284
+ monthsOverThreshold: number;
1285
+ /** 姓名 */
1286
+ realName: string;
1287
+ /** 用户名 */
1288
+ userName: string;
1289
+ }
1290
+ export declare class PersonEarlyWarnYoungAge {
1291
+ /**
1292
+ * 年龄
1293
+ * @format int32
1294
+ */
1295
+ age: number;
1296
+ /**
1297
+ * 低龄阈值
1298
+ * @format int32
1299
+ */
1300
+ ageThreshold: number;
1301
+ /**
1302
+ * 出生日期
1303
+ * @format int64
1304
+ */
1305
+ birthday: number;
1306
+ departmentCode: string;
1307
+ /** 用工类型 */
1308
+ employmentType: string;
1309
+ /** 身份证号 */
1310
+ idCardNumber: string;
1311
+ /**
1312
+ * 不足月数
1313
+ * @format int32
1314
+ */
1315
+ monthsUnderThreshold: number;
1316
+ /** 姓名 */
1317
+ realName: string;
1318
+ /** 用户名 */
1319
+ userName: string;
1320
+ }
1139
1321
  export declare class Point {
1140
1322
  /** @format double */
1141
1323
  accuracy: number;
@@ -1692,6 +1874,7 @@ export declare class ScheduleCheckInRequest {
1692
1874
  export declare class SdtaLoginForm {
1693
1875
  department?: string;
1694
1876
  idCardNumber?: string;
1877
+ password?: string;
1695
1878
  realName?: string;
1696
1879
  userId?: string;
1697
1880
  username?: string;
@@ -1886,21 +2069,47 @@ export declare class UserAccessoryLoginForm {
1886
2069
  /** 短信验证码请求ID */
1887
2070
  messageRequestId?: string;
1888
2071
  }
2072
+ export declare class UserBatchLockBean {
2073
+ /** 用户ID列表 */
2074
+ ids?: number[];
2075
+ /** 原因 */
2076
+ reason?: string;
2077
+ }
1889
2078
  export declare class UserBatchUpdateBean {
1890
- /** @format int32 */
2079
+ /**
2080
+ * 允许登录设备数
2081
+ * @format int32
2082
+ */
1891
2083
  allowDeviceCount?: number;
2084
+ /** 允许登录日期 */
1892
2085
  allowLoginDays?: string;
2086
+ /** 允许登录时间 */
1893
2087
  allowLoginTimeRange?: string;
2088
+ /** 允许多设备登录 */
1894
2089
  allowMultiLogin?: boolean;
2090
+ /** 下次登录是否需要强制修改密码 */
1895
2091
  changePasswordFlag?: boolean;
1896
- /** @format int64 */
2092
+ /**
2093
+ * 部门ID
2094
+ * @format int64
2095
+ */
1897
2096
  departmentId?: number;
2097
+ /** 用户ID列表 */
1898
2098
  ids?: number[];
1899
- /** @format int64 */
2099
+ /**
2100
+ * 密码过期时间
2101
+ * @format int64
2102
+ */
1900
2103
  passwordExpire?: number;
1901
- /** @format int64 */
2104
+ /**
2105
+ * 角色ID
2106
+ * @format int64
2107
+ */
1902
2108
  roleId?: number;
1903
- /** @format int64 */
2109
+ /**
2110
+ * 用户过期时间
2111
+ * @format int64
2112
+ */
1904
2113
  userExpire?: number;
1905
2114
  }
1906
2115
  export declare class UserBindingsTransDTO {
@@ -1974,6 +2183,81 @@ export declare class UserCreateBean {
1974
2183
  /** 体检表信息 */
1975
2184
  userProfilePhysicalExaminations?: UserProfilePhysicalExamination[];
1976
2185
  }
2186
+ export declare class UserImportBean {
2187
+ /** 银行卡号 */
2188
+ bankAccount: string;
2189
+ /**
2190
+ * 出生日期
2191
+ * @format int64
2192
+ */
2193
+ birthday: number;
2194
+ /** 标准证号 */
2195
+ certificateNo: string;
2196
+ /** 公司 */
2197
+ company: string;
2198
+ /** 消控证书号 */
2199
+ consumerCertificateNo: string;
2200
+ /**
2201
+ * 签署合同次数
2202
+ * @format int32
2203
+ */
2204
+ contractCount: number;
2205
+ /** 合同编号 */
2206
+ contractNo: string;
2207
+ /** 合同期限 */
2208
+ contractPeriod: string;
2209
+ /** 现居住地 */
2210
+ currentAddress: string;
2211
+ /** 部门 */
2212
+ department: string;
2213
+ /** 学历 */
2214
+ educationBackground: string;
2215
+ /** 员工编号 */
2216
+ employeeNo: string;
2217
+ /** Excel格式错误信息 */
2218
+ errors: string[];
2219
+ /** 性别 */
2220
+ gender: string;
2221
+ genderEnum: "Female" | "Male" | "Other" | "Unknown";
2222
+ /**
2223
+ * 身高
2224
+ * @format int32
2225
+ */
2226
+ height: number;
2227
+ /** 高级证书号 */
2228
+ highCertificateNo: string;
2229
+ /**
2230
+ * 入职时间
2231
+ * @format int64
2232
+ */
2233
+ hireDate: number;
2234
+ /** 家庭住址 */
2235
+ homeAddress: string;
2236
+ /** 身份证号 */
2237
+ idNumber: string;
2238
+ /** 中级证书号 */
2239
+ intermediateCertificateNo: string;
2240
+ /** 姓名 */
2241
+ name: string;
2242
+ /** 民族 */
2243
+ nation: string;
2244
+ /** 政治面貌 */
2245
+ partyMembership: string;
2246
+ /** 手机号 */
2247
+ phone: string;
2248
+ /** 初级证书号 */
2249
+ primaryCertificateNo: string;
2250
+ /** 退休返聘 */
2251
+ retiredRehire: string;
2252
+ valid: boolean;
2253
+ }
2254
+ export declare class UserImportResultDetail {
2255
+ detail: UserImportBean;
2256
+ message: string;
2257
+ /** @format int32 */
2258
+ rowNumber: number;
2259
+ success: boolean;
2260
+ }
1977
2261
  export declare class UserLocation {
1978
2262
  /** @format double */
1979
2263
  accuracy: number;
@@ -2008,6 +2292,8 @@ export declare class UserLocationQueryBean {
2008
2292
  business?: string[];
2009
2293
  /** 基于业务部门代码匹配 */
2010
2294
  businessDepartment?: string[];
2295
+ /** 根据专业职能证书批量查询 */
2296
+ certificates?: string[];
2011
2297
  /** 根据部门代码查询。支持多选 */
2012
2298
  department?: string[];
2013
2299
  /** 根据部门id查询。支持多选 */
@@ -2035,6 +2321,10 @@ export declare class UserLocationQueryBean {
2035
2321
  isDeleted?: boolean;
2036
2322
  /** 是否被锁定 */
2037
2323
  isLocked?: boolean;
2324
+ /** 是否是军人 */
2325
+ isSoldier?: boolean;
2326
+ /** 根据职务批量查询 */
2327
+ jobTitleIn?: string[];
2038
2328
  /** 最近登录IP */
2039
2329
  lastLoginIp?: string;
2040
2330
  /**
@@ -2185,6 +2475,8 @@ export declare class UserProfileAdditional {
2185
2475
  * @format int64
2186
2476
  */
2187
2477
  birthDate: number;
2478
+ /** 公司 */
2479
+ company: string;
2188
2480
  /** 通讯地址 */
2189
2481
  contactAddress: string;
2190
2482
  /** 学历 */
@@ -2193,6 +2485,8 @@ export declare class UserProfileAdditional {
2193
2485
  emergencyContact: string;
2194
2486
  /** 紧急联系人电话 */
2195
2487
  emergencyContactPhone: string;
2488
+ /** 员工编号 */
2489
+ employeeNumber: string;
2196
2490
  /** 用工类型 */
2197
2491
  employeeType: string;
2198
2492
  /**
@@ -2232,12 +2526,21 @@ export declare class UserProfileAdditional {
2232
2526
  militaryAge: number;
2233
2527
  /** 民族 */
2234
2528
  nation: string;
2529
+ /** 籍贯 */
2530
+ nativePlace: string;
2235
2531
  /** 人员状态 */
2236
2532
  personnelStatus: string;
2237
2533
  /** 政治面貌 */
2238
2534
  politicalStatus: string;
2535
+ /** 退休返聘 */
2536
+ retireRepeal: string;
2239
2537
  /** 保安证等级 */
2240
2538
  securityGuardCertificateLevel: string;
2539
+ /**
2540
+ * 签合同次数
2541
+ * @format int32
2542
+ */
2543
+ signContractCount: number;
2241
2544
  /** 退伍证号 */
2242
2545
  veteransCertificateNumber: string;
2243
2546
  }
@@ -2270,6 +2573,8 @@ export declare class UserProfileComputerSkill {
2270
2573
  export declare class UserProfileContracts {
2271
2574
  /** 电子合同 */
2272
2575
  contractFileUrl: string;
2576
+ /** 合同号 */
2577
+ contractNumber: string;
2273
2578
  /** 合同类型 */
2274
2579
  contractType: string;
2275
2580
  /**
@@ -2277,6 +2582,8 @@ export declare class UserProfileContracts {
2277
2582
  * @format int64
2278
2583
  */
2279
2584
  endDate: number;
2585
+ /** 是否预警 */
2586
+ ifNotify: boolean;
2280
2587
  /**
2281
2588
  * 合同开始时间
2282
2589
  * @format int64
@@ -2451,6 +2758,8 @@ export declare class UserQueryBean {
2451
2758
  business?: string[];
2452
2759
  /** 基于业务部门代码匹配 */
2453
2760
  businessDepartment?: string[];
2761
+ /** 根据专业职能证书批量查询 */
2762
+ certificates?: string[];
2454
2763
  /** 根据部门代码查询。支持多选 */
2455
2764
  department?: string[];
2456
2765
  /** 根据部门id查询。支持多选 */
@@ -2477,6 +2786,10 @@ export declare class UserQueryBean {
2477
2786
  isDeleted?: boolean;
2478
2787
  /** 是否被锁定 */
2479
2788
  isLocked?: boolean;
2789
+ /** 是否是军人 */
2790
+ isSoldier?: boolean;
2791
+ /** 根据职务批量查询 */
2792
+ jobTitleIn?: string[];
2480
2793
  /** 最近登录IP */
2481
2794
  lastLoginIp?: string;
2482
2795
  /**
@@ -2884,6 +3197,26 @@ export declare class WebSocketBrokerStats {
2884
3197
  stompSubProtocolStatsInfo: string;
2885
3198
  webSocketSessionStatsInfo: string;
2886
3199
  }
3200
+ export declare class DesensitizePageResultPersonEarlyWarnCertifications {
3201
+ list: PersonEarlyWarnCertifications[];
3202
+ /** @format int64 */
3203
+ total: number;
3204
+ }
3205
+ export declare class DesensitizePageResultPersonEarlyWarnContracts {
3206
+ list: PersonEarlyWarnContracts[];
3207
+ /** @format int64 */
3208
+ total: number;
3209
+ }
3210
+ export declare class DesensitizePageResultPersonEarlyWarnOverAge {
3211
+ list: PersonEarlyWarnOverAge[];
3212
+ /** @format int64 */
3213
+ total: number;
3214
+ }
3215
+ export declare class DesensitizePageResultPersonEarlyWarnYoungAge {
3216
+ list: PersonEarlyWarnYoungAge[];
3217
+ /** @format int64 */
3218
+ total: number;
3219
+ }
2887
3220
  export declare class DesensitizePageResultPolice {
2888
3221
  list: Police[];
2889
3222
  /** @format int64 */
@@ -3776,7 +4109,7 @@ export declare class GetRoleParams {
3776
4109
  scope?: string;
3777
4110
  type?: "Auditing" | "Common" | "Security" | "System" | "Work";
3778
4111
  }
3779
- export declare class ExistParams5 {
4112
+ export declare class ExistParams7 {
3780
4113
  /** @format int64 */
3781
4114
  createUser?: number;
3782
4115
  department?: string;
@@ -3972,7 +4305,7 @@ export declare class ToOssParams {
3972
4305
  export declare class UploadPayload {
3973
4306
  file?: File;
3974
4307
  }
3975
- export declare class ByIdParams8 {
4308
+ export declare class ByIdParams7 {
3976
4309
  /** format */
3977
4310
  format?: string;
3978
4311
  /** id */
@@ -4103,6 +4436,8 @@ export declare class GetUserParams {
4103
4436
  business?: string[];
4104
4437
  /** 基于业务部门代码匹配 */
4105
4438
  businessDepartment?: string[];
4439
+ /** 根据专业职能证书批量查询 */
4440
+ certificates?: string[];
4106
4441
  /** 根据部门代码查询。支持多选 */
4107
4442
  department?: string[];
4108
4443
  /** 根据部门id查询。支持多选 */
@@ -4129,6 +4464,10 @@ export declare class GetUserParams {
4129
4464
  isDeleted?: boolean;
4130
4465
  /** 是否被锁定 */
4131
4466
  isLocked?: boolean;
4467
+ /** 是否是军人 */
4468
+ isSoldier?: boolean;
4469
+ /** 根据职务批量查询 */
4470
+ jobTitleIn?: string[];
4132
4471
  /** 最近登录IP */
4133
4472
  lastLoginIp?: string;
4134
4473
  /**
@@ -4301,6 +4640,8 @@ export declare class ExistParams4 {
4301
4640
  business?: string[];
4302
4641
  /** 基于业务部门代码匹配 */
4303
4642
  businessDepartment?: string[];
4643
+ /** 根据专业职能证书批量查询 */
4644
+ certificates?: string[];
4304
4645
  /** 根据部门代码查询。支持多选 */
4305
4646
  department?: string[];
4306
4647
  /** 根据部门id查询。支持多选 */
@@ -4327,6 +4668,10 @@ export declare class ExistParams4 {
4327
4668
  isDeleted?: boolean;
4328
4669
  /** 是否被锁定 */
4329
4670
  isLocked?: boolean;
4671
+ /** 是否是军人 */
4672
+ isSoldier?: boolean;
4673
+ /** 根据职务批量查询 */
4674
+ jobTitleIn?: string[];
4330
4675
  /** 最近登录IP */
4331
4676
  lastLoginIp?: string;
4332
4677
  /**
@@ -4396,6 +4741,8 @@ export declare class GetListParams {
4396
4741
  business?: string[];
4397
4742
  /** 基于业务部门代码匹配 */
4398
4743
  businessDepartment?: string[];
4744
+ /** 根据专业职能证书批量查询 */
4745
+ certificates?: string[];
4399
4746
  /** 根据部门代码查询。支持多选 */
4400
4747
  department?: string[];
4401
4748
  /** 根据部门id查询。支持多选 */
@@ -4422,6 +4769,10 @@ export declare class GetListParams {
4422
4769
  isDeleted?: boolean;
4423
4770
  /** 是否被锁定 */
4424
4771
  isLocked?: boolean;
4772
+ /** 是否是军人 */
4773
+ isSoldier?: boolean;
4774
+ /** 根据职务批量查询 */
4775
+ jobTitleIn?: string[];
4425
4776
  /** 最近登录IP */
4426
4777
  lastLoginIp?: string;
4427
4778
  /**
@@ -7076,7 +7427,7 @@ declare class Api {
7076
7427
  * @response `403` `void` Forbidden
7077
7428
  * @response `404` `void` Not Found
7078
7429
  */
7079
- exist: (query: ExistParams5, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
7430
+ exist: (query: ExistParams7, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
7080
7431
  /**
7081
7432
  * @description 所需权限:role:list
7082
7433
  *
@@ -7689,7 +8040,7 @@ declare class Api {
7689
8040
  * @response `403` `void` Forbidden
7690
8041
  * @response `404` `void` Not Found
7691
8042
  */
7692
- byId: ({ id, ...query }: ByIdParams8, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<Resource>;
8043
+ byId: ({ id, ...query }: ByIdParams7, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<Resource>;
7693
8044
  /**
7694
8045
  * No description
7695
8046
  *
@@ -8648,6 +8999,90 @@ declare class Api {
8648
8999
  * @response `404` `void` Not Found
8649
9000
  */
8650
9001
  listUsername: (queryBean: UserQueryBean, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<PageResultString>;
9002
+ /**
9003
+ * @description 所需权限:user:lock
9004
+ *
9005
+ * @tags user
9006
+ * @name PutLockInBatch
9007
+ * @summary 批量锁定用户
9008
+ * @request PUT:/auth/user/lock-in-batch
9009
+ * @response `200` `void` OK
9010
+ * @response `201` `void` Created
9011
+ * @response `401` `void` Unauthorized
9012
+ * @response `403` `void` Forbidden
9013
+ * @response `404` `void` Not Found
9014
+ */
9015
+ putLockInBatch: (form: UserBatchLockBean, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
9016
+ /**
9017
+ * @description 所需权限:user:admin
9018
+ *
9019
+ * @tags user
9020
+ * @name ProfileImport
9021
+ * @summary 导入用户信息[excel]
9022
+ * @request POST:/auth/user/profile-import
9023
+ * @response `200` `ImportUserResult` OK
9024
+ * @response `201` `void` Created
9025
+ * @response `401` `void` Unauthorized
9026
+ * @response `403` `void` Forbidden
9027
+ * @response `404` `void` Not Found
9028
+ */
9029
+ profileImport: (file: any, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<ImportUserResult>;
9030
+ /**
9031
+ * @description 所需权限:user:profile-warning:find
9032
+ *
9033
+ * @tags user
9034
+ * @name ProfileWarningCertificationExpiringUsers
9035
+ * @summary 获取证书即将预警用户
9036
+ * @request POST:/auth/user/profile-warning/certification-expiring-users
9037
+ * @response `200` `DesensitizePageResultPersonEarlyWarnCertifications` OK
9038
+ * @response `201` `void` Created
9039
+ * @response `401` `void` Unauthorized
9040
+ * @response `403` `void` Forbidden
9041
+ * @response `404` `void` Not Found
9042
+ */
9043
+ profileWarningCertificationExpiringUsers: (userQueryBean: UserQueryBean, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<DesensitizePageResultPersonEarlyWarnCertifications>;
9044
+ /**
9045
+ * @description 所需权限:user:profile-warning:find
9046
+ *
9047
+ * @tags user
9048
+ * @name ProfileWarningContractExpiringUsers
9049
+ * @summary 获取合同即将过期预警用户
9050
+ * @request POST:/auth/user/profile-warning/contract-expiring-users
9051
+ * @response `200` `DesensitizePageResultPersonEarlyWarnContracts` OK
9052
+ * @response `201` `void` Created
9053
+ * @response `401` `void` Unauthorized
9054
+ * @response `403` `void` Forbidden
9055
+ * @response `404` `void` Not Found
9056
+ */
9057
+ profileWarningContractExpiringUsers: (userQueryBean: UserQueryBean, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<DesensitizePageResultPersonEarlyWarnContracts>;
9058
+ /**
9059
+ * @description 所需权限:user:profile-warning:find
9060
+ *
9061
+ * @tags user
9062
+ * @name ProfileWarningOverAgeUsers
9063
+ * @summary 获取超龄预警用户
9064
+ * @request POST:/auth/user/profile-warning/over-age-users
9065
+ * @response `200` `DesensitizePageResultPersonEarlyWarnOverAge` OK
9066
+ * @response `201` `void` Created
9067
+ * @response `401` `void` Unauthorized
9068
+ * @response `403` `void` Forbidden
9069
+ * @response `404` `void` Not Found
9070
+ */
9071
+ profileWarningOverAgeUsers: (userQueryBean: UserQueryBean, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<DesensitizePageResultPersonEarlyWarnOverAge>;
9072
+ /**
9073
+ * @description 所需权限:user:profile-warning:find
9074
+ *
9075
+ * @tags user
9076
+ * @name ProfileWarningUnderAgeUsers
9077
+ * @summary 获取低龄预警用户
9078
+ * @request POST:/auth/user/profile-warning/under-age-users
9079
+ * @response `200` `DesensitizePageResultPersonEarlyWarnYoungAge` OK
9080
+ * @response `201` `void` Created
9081
+ * @response `401` `void` Unauthorized
9082
+ * @response `403` `void` Forbidden
9083
+ * @response `404` `void` Not Found
9084
+ */
9085
+ profileWarningUnderAgeUsers: (userQueryBean: UserQueryBean, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<DesensitizePageResultPersonEarlyWarnYoungAge>;
8651
9086
  /**
8652
9087
  * @description 所需权限:user:password:reset
8653
9088
  *
@@ -8662,6 +9097,20 @@ declare class Api {
8662
9097
  * @response `404` `void` Not Found
8663
9098
  */
8664
9099
  putResetPassword: (ids: PutResetPasswordPayload, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<ResetPasswordResult[]>;
9100
+ /**
9101
+ * @description 所需权限:user:unlock
9102
+ *
9103
+ * @tags user
9104
+ * @name PutUnlockInBatch
9105
+ * @summary 批量解锁用户
9106
+ * @request PUT:/auth/user/unlock-in-batch
9107
+ * @response `200` `void` OK
9108
+ * @response `201` `void` Created
9109
+ * @response `401` `void` Unauthorized
9110
+ * @response `403` `void` Forbidden
9111
+ * @response `404` `void` Not Found
9112
+ */
9113
+ putUnlockInBatch: (form: UserBatchLockBean, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
8665
9114
  /**
8666
9115
  * @description 仅修改非空字段<br>所需权限:user:update
8667
9116
  *