szpt-driver-api 1.0.83 → 1.0.85
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 +222 -9
- package/auth.js +1 -1
- package/auth.js.map +1 -1
- package/authBpmnQuery.d.ts +6 -6
- package/authBpmnQuery.js +1 -1
- package/authBpmnQuery.js.map +1 -1
- package/authDuty.d.ts +557 -60
- package/authDuty.js +1 -1
- package/authDuty.js.map +1 -1
- package/common.d.ts +2 -2
- package/common.js +1 -1
- package/common.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/oss.d.ts +4 -4
- package/oss.js +1 -1
- package/oss.js.map +1 -1
- package/package.json +1 -1
- package/query.d.ts +26 -88
- package/query.js +1 -1
- package/query.js.map +1 -1
- package/szAccident.d.ts +2 -2
- package/szAccident.js +1 -1
- package/szAccident.js.map +1 -1
- package/szTraffic.d.ts +4 -4
- package/szTraffic.js +1 -1
- package/szTraffic.js.map +1 -1
- package/videoService.d.ts +4 -4
- package/videoService.js +1 -1
- package/videoService.js.map +1 -1
package/auth.d.ts
CHANGED
|
@@ -1969,6 +1969,10 @@ export declare class UserCreateBean {
|
|
|
1969
1969
|
userProfileContracts?: UserProfileContracts[];
|
|
1970
1970
|
/** 技能和工作经历 */
|
|
1971
1971
|
userProfileExperienceAndSkills?: UserProfileExperienceAndSkills;
|
|
1972
|
+
/** 无犯罪证明信息 */
|
|
1973
|
+
userProfileNoCriminalRecords?: UserProfileNoCriminalRecord[];
|
|
1974
|
+
/** 体检表信息 */
|
|
1975
|
+
userProfilePhysicalExaminations?: UserProfilePhysicalExamination[];
|
|
1972
1976
|
}
|
|
1973
1977
|
export declare class UserLocation {
|
|
1974
1978
|
/** @format double */
|
|
@@ -2137,20 +2141,36 @@ export declare class UserPoint {
|
|
|
2137
2141
|
username?: string;
|
|
2138
2142
|
}
|
|
2139
2143
|
export declare class UserProfile {
|
|
2144
|
+
/** 用户额外信息 */
|
|
2140
2145
|
additional: UserProfileAdditional;
|
|
2146
|
+
/** 头像 */
|
|
2141
2147
|
avatar: string;
|
|
2148
|
+
/** 关联部门 */
|
|
2142
2149
|
department: Department;
|
|
2143
2150
|
digest: EntityDigest;
|
|
2151
|
+
/** 电子邮箱 */
|
|
2144
2152
|
email: string;
|
|
2145
|
-
/**
|
|
2153
|
+
/**
|
|
2154
|
+
* 用户有效期
|
|
2155
|
+
* @format int64
|
|
2156
|
+
*/
|
|
2146
2157
|
expire: number;
|
|
2158
|
+
/** 性别 */
|
|
2147
2159
|
gender: "Female" | "Male" | "Other" | "Unknown";
|
|
2160
|
+
/** 身份证号 */
|
|
2148
2161
|
idCardNumber: string;
|
|
2149
|
-
/**
|
|
2162
|
+
/**
|
|
2163
|
+
* 密码有效期
|
|
2164
|
+
* @format int64
|
|
2165
|
+
*/
|
|
2150
2166
|
passwordExpire: number;
|
|
2167
|
+
/** 手机号 */
|
|
2151
2168
|
phone: string;
|
|
2169
|
+
/** 关联警员 */
|
|
2152
2170
|
police: Police;
|
|
2171
|
+
/** 姓名 */
|
|
2153
2172
|
realName: string;
|
|
2173
|
+
/** 角色 */
|
|
2154
2174
|
role: Role;
|
|
2155
2175
|
}
|
|
2156
2176
|
export declare class UserProfileAdditional {
|
|
@@ -2160,26 +2180,83 @@ export declare class UserProfileAdditional {
|
|
|
2160
2180
|
bankAccountName: string;
|
|
2161
2181
|
/** 银行卡号 */
|
|
2162
2182
|
bankAccountNumber: string;
|
|
2183
|
+
/**
|
|
2184
|
+
* 出生日期
|
|
2185
|
+
* @format int64
|
|
2186
|
+
*/
|
|
2187
|
+
birthDate: number;
|
|
2163
2188
|
/** 通讯地址 */
|
|
2164
2189
|
contactAddress: string;
|
|
2190
|
+
/** 学历 */
|
|
2191
|
+
educationalBackground: string;
|
|
2165
2192
|
/** 紧急联系人 */
|
|
2166
2193
|
emergencyContact: string;
|
|
2167
2194
|
/** 紧急联系人电话 */
|
|
2168
2195
|
emergencyContactPhone: string;
|
|
2196
|
+
/** 用工类型 */
|
|
2197
|
+
employeeType: string;
|
|
2198
|
+
/**
|
|
2199
|
+
* 入伍时间
|
|
2200
|
+
* @format int64
|
|
2201
|
+
*/
|
|
2202
|
+
enlistmentTime: number;
|
|
2203
|
+
/**
|
|
2204
|
+
* 入职日期
|
|
2205
|
+
* @format int64
|
|
2206
|
+
*/
|
|
2207
|
+
entryDate: number;
|
|
2169
2208
|
/** 人脸正面照片 */
|
|
2170
2209
|
facePicture: string;
|
|
2210
|
+
/**
|
|
2211
|
+
* 身高(厘米)
|
|
2212
|
+
* @format int32
|
|
2213
|
+
*/
|
|
2214
|
+
height: number;
|
|
2171
2215
|
/** 家庭住址 */
|
|
2172
2216
|
homeAddress: string;
|
|
2173
2217
|
/** 身份证反面照片 */
|
|
2174
2218
|
idCardBackPicture: string;
|
|
2175
2219
|
/** 身份证正面照片 */
|
|
2176
2220
|
idCardFrontPicture: string;
|
|
2221
|
+
/** 职称 */
|
|
2222
|
+
jobTitle: string;
|
|
2223
|
+
/**
|
|
2224
|
+
* 离职日期
|
|
2225
|
+
* @format int64
|
|
2226
|
+
*/
|
|
2227
|
+
leaveDate: number;
|
|
2228
|
+
/**
|
|
2229
|
+
* 军龄
|
|
2230
|
+
* @format int32
|
|
2231
|
+
*/
|
|
2232
|
+
militaryAge: number;
|
|
2233
|
+
/** 民族 */
|
|
2234
|
+
nation: string;
|
|
2235
|
+
/** 人员状态 */
|
|
2236
|
+
personnelStatus: string;
|
|
2237
|
+
/** 政治面貌 */
|
|
2238
|
+
politicalStatus: string;
|
|
2239
|
+
/** 保安证等级 */
|
|
2240
|
+
securityGuardCertificateLevel: string;
|
|
2241
|
+
/** 退伍证号 */
|
|
2242
|
+
veteransCertificateNumber: string;
|
|
2177
2243
|
}
|
|
2178
2244
|
export declare class UserProfileCertificate {
|
|
2179
2245
|
/** 证书电子件 */
|
|
2180
2246
|
certFileUrl: string;
|
|
2181
2247
|
/** 证书名称 */
|
|
2182
2248
|
certName: string;
|
|
2249
|
+
/** 证书编号 */
|
|
2250
|
+
certNumber: string;
|
|
2251
|
+
/** 证书类型 */
|
|
2252
|
+
certType: string;
|
|
2253
|
+
/**
|
|
2254
|
+
* 失效时间
|
|
2255
|
+
* @format int64
|
|
2256
|
+
*/
|
|
2257
|
+
expirationTime: number;
|
|
2258
|
+
/** 是否开启预警 */
|
|
2259
|
+
ifNotify: boolean;
|
|
2183
2260
|
/**
|
|
2184
2261
|
* 证书获得时间
|
|
2185
2262
|
* @format int64
|
|
@@ -2226,11 +2303,47 @@ export declare class UserProfileExtraDetail {
|
|
|
2226
2303
|
contracts: UserProfileContracts[];
|
|
2227
2304
|
/** 工作经历和技能 */
|
|
2228
2305
|
userProfileExperienceAndSkills: UserProfileExperienceAndSkills;
|
|
2306
|
+
/** 无犯罪记录证明 */
|
|
2307
|
+
userProfileNoCriminalRecords: UserProfileNoCriminalRecord[];
|
|
2308
|
+
/** 体检表 */
|
|
2309
|
+
userProfilePhysicalExaminations: UserProfilePhysicalExamination[];
|
|
2229
2310
|
}
|
|
2230
2311
|
export declare class UserProfileLanguageAbility {
|
|
2231
2312
|
/** 语言能力描述 */
|
|
2232
2313
|
languageAbility: string;
|
|
2233
2314
|
}
|
|
2315
|
+
export declare class UserProfileNoCriminalRecord {
|
|
2316
|
+
/**
|
|
2317
|
+
* 无犯罪证明结束时间
|
|
2318
|
+
* @format int64
|
|
2319
|
+
*/
|
|
2320
|
+
endDate: number;
|
|
2321
|
+
/** 无犯罪证明名称 */
|
|
2322
|
+
fileName: string;
|
|
2323
|
+
/** 附件地址 */
|
|
2324
|
+
fileUrl: string;
|
|
2325
|
+
/**
|
|
2326
|
+
* 无犯罪证明开始时间
|
|
2327
|
+
* @format int64
|
|
2328
|
+
*/
|
|
2329
|
+
startDate: number;
|
|
2330
|
+
}
|
|
2331
|
+
export declare class UserProfilePhysicalExamination {
|
|
2332
|
+
/**
|
|
2333
|
+
* 体检表结束时间
|
|
2334
|
+
* @format int64
|
|
2335
|
+
*/
|
|
2336
|
+
endDate: number;
|
|
2337
|
+
/** 体检表名称 */
|
|
2338
|
+
fileName: string;
|
|
2339
|
+
/** 体检表文件地址 */
|
|
2340
|
+
fileUrl: string;
|
|
2341
|
+
/**
|
|
2342
|
+
* 体检表开始时间
|
|
2343
|
+
* @format int64
|
|
2344
|
+
*/
|
|
2345
|
+
startDate: number;
|
|
2346
|
+
}
|
|
2234
2347
|
export declare class UserProfileTrainingExperience {
|
|
2235
2348
|
/** 培训经历描述 */
|
|
2236
2349
|
trainingExperienceDesc: string;
|
|
@@ -2238,26 +2351,76 @@ export declare class UserProfileTrainingExperience {
|
|
|
2238
2351
|
export declare class UserProfileUpdateBean {
|
|
2239
2352
|
/** 头像 */
|
|
2240
2353
|
avatar?: string;
|
|
2354
|
+
/**
|
|
2355
|
+
* 出生日期
|
|
2356
|
+
* @format int64
|
|
2357
|
+
*/
|
|
2358
|
+
birthDate?: number;
|
|
2241
2359
|
/** 用户证书信息 */
|
|
2242
2360
|
certificates?: UserProfileCertificate[];
|
|
2243
2361
|
/** 用户合同信息 */
|
|
2244
2362
|
contracts?: UserProfileContracts[];
|
|
2363
|
+
/** 学历 */
|
|
2364
|
+
educationalBackground?: string;
|
|
2245
2365
|
/** Email */
|
|
2246
2366
|
email?: string;
|
|
2367
|
+
/** 用工类型 */
|
|
2368
|
+
employeeType?: string;
|
|
2369
|
+
/**
|
|
2370
|
+
* 入伍时间
|
|
2371
|
+
* @format int64
|
|
2372
|
+
*/
|
|
2373
|
+
enlistmentTime?: number;
|
|
2374
|
+
/**
|
|
2375
|
+
* 入职日期
|
|
2376
|
+
* @format int64
|
|
2377
|
+
*/
|
|
2378
|
+
entryDate?: number;
|
|
2247
2379
|
/** 性别 */
|
|
2248
2380
|
gender?: "Female" | "Male" | "Other" | "Unknown";
|
|
2381
|
+
/**
|
|
2382
|
+
* 身高(厘米)
|
|
2383
|
+
* @format int32
|
|
2384
|
+
*/
|
|
2385
|
+
height?: number;
|
|
2249
2386
|
/** @format int64 */
|
|
2250
2387
|
id?: number;
|
|
2251
2388
|
/** 身份证号 */
|
|
2252
2389
|
idCardNumber?: string;
|
|
2390
|
+
/** 人员职务 */
|
|
2391
|
+
jobTitle?: string;
|
|
2392
|
+
/**
|
|
2393
|
+
* 离职日期
|
|
2394
|
+
* @format int64
|
|
2395
|
+
*/
|
|
2396
|
+
leaveDate?: number;
|
|
2397
|
+
/**
|
|
2398
|
+
* 军龄
|
|
2399
|
+
* @format int32
|
|
2400
|
+
*/
|
|
2401
|
+
militaryAge?: number;
|
|
2402
|
+
/** 民族 */
|
|
2403
|
+
nation?: string;
|
|
2404
|
+
/** 人员状态 */
|
|
2405
|
+
personnelStatus?: string;
|
|
2253
2406
|
/** 手机号 */
|
|
2254
2407
|
phone?: string;
|
|
2408
|
+
/** 政治面貌 */
|
|
2409
|
+
politicalStatus?: string;
|
|
2255
2410
|
/** 姓名 */
|
|
2256
2411
|
realName?: string;
|
|
2412
|
+
/** 保安证等级 */
|
|
2413
|
+
securityGuardCertificateLevel?: string;
|
|
2257
2414
|
/** 用户额外信息 */
|
|
2258
2415
|
userProfileAdditional?: UserProfileAdditional;
|
|
2259
2416
|
/** 用户工作经历以及技能 */
|
|
2260
2417
|
userProfileExperienceAndSkills?: UserProfileExperienceAndSkills;
|
|
2418
|
+
/** 用户无犯罪记录证明 */
|
|
2419
|
+
userProfileNoCriminalRecords?: UserProfileNoCriminalRecord[];
|
|
2420
|
+
/** 用户体检表 */
|
|
2421
|
+
userProfilePhysicalExaminations?: UserProfilePhysicalExamination[];
|
|
2422
|
+
/** 退伍证号 */
|
|
2423
|
+
veteransCertificateNumber?: string;
|
|
2261
2424
|
}
|
|
2262
2425
|
export declare class UserProfileWorkExperience {
|
|
2263
2426
|
/** 工作经历描述 */
|
|
@@ -2618,37 +2781,87 @@ export declare class UserTrackQuery {
|
|
|
2618
2781
|
export declare class UserUpdateBean {
|
|
2619
2782
|
/** 头像 */
|
|
2620
2783
|
avatar?: string;
|
|
2784
|
+
/**
|
|
2785
|
+
* 出生日期
|
|
2786
|
+
* @format int64
|
|
2787
|
+
*/
|
|
2788
|
+
birthDate?: number;
|
|
2621
2789
|
/** 用户证书信息 */
|
|
2622
2790
|
certificates?: UserProfileCertificate[];
|
|
2623
2791
|
/** 用户合同信息 */
|
|
2624
2792
|
contracts?: UserProfileContracts[];
|
|
2625
2793
|
/** @format int64 */
|
|
2626
2794
|
departmentId?: number;
|
|
2795
|
+
/** 学历 */
|
|
2796
|
+
educationalBackground?: string;
|
|
2627
2797
|
/** Email */
|
|
2628
2798
|
email?: string;
|
|
2799
|
+
/** 用工类型 */
|
|
2800
|
+
employeeType?: string;
|
|
2801
|
+
/**
|
|
2802
|
+
* 入伍时间
|
|
2803
|
+
* @format int64
|
|
2804
|
+
*/
|
|
2805
|
+
enlistmentTime?: number;
|
|
2806
|
+
/**
|
|
2807
|
+
* 入职日期
|
|
2808
|
+
* @format int64
|
|
2809
|
+
*/
|
|
2810
|
+
entryDate?: number;
|
|
2629
2811
|
/** @format int64 */
|
|
2630
2812
|
expire?: number;
|
|
2631
2813
|
/** 性别 */
|
|
2632
2814
|
gender?: "Female" | "Male" | "Other" | "Unknown";
|
|
2815
|
+
/**
|
|
2816
|
+
* 身高(厘米)
|
|
2817
|
+
* @format int32
|
|
2818
|
+
*/
|
|
2819
|
+
height?: number;
|
|
2633
2820
|
/** @format int64 */
|
|
2634
2821
|
id?: number;
|
|
2635
2822
|
/** 身份证号 */
|
|
2636
2823
|
idCardNumber?: string;
|
|
2824
|
+
/** 人员职务 */
|
|
2825
|
+
jobTitle?: string;
|
|
2826
|
+
/**
|
|
2827
|
+
* 离职日期
|
|
2828
|
+
* @format int64
|
|
2829
|
+
*/
|
|
2830
|
+
leaveDate?: number;
|
|
2637
2831
|
loginName?: string;
|
|
2832
|
+
/**
|
|
2833
|
+
* 军龄
|
|
2834
|
+
* @format int32
|
|
2835
|
+
*/
|
|
2836
|
+
militaryAge?: number;
|
|
2837
|
+
/** 民族 */
|
|
2838
|
+
nation?: string;
|
|
2638
2839
|
/** @format int64 */
|
|
2639
2840
|
passwordExpire?: number;
|
|
2841
|
+
/** 人员状态 */
|
|
2842
|
+
personnelStatus?: string;
|
|
2640
2843
|
/** 手机号 */
|
|
2641
2844
|
phone?: string;
|
|
2642
2845
|
/** @format int64 */
|
|
2643
2846
|
policeId?: number;
|
|
2847
|
+
/** 政治面貌 */
|
|
2848
|
+
politicalStatus?: string;
|
|
2644
2849
|
/** 姓名 */
|
|
2645
2850
|
realName?: string;
|
|
2646
2851
|
/** @format int64 */
|
|
2647
2852
|
roleId?: number;
|
|
2853
|
+
/** 保安证等级 */
|
|
2854
|
+
securityGuardCertificateLevel?: string;
|
|
2648
2855
|
/** 用户额外信息 */
|
|
2649
2856
|
userProfileAdditional?: UserProfileAdditional;
|
|
2650
2857
|
/** 用户工作经历以及技能 */
|
|
2651
2858
|
userProfileExperienceAndSkills?: UserProfileExperienceAndSkills;
|
|
2859
|
+
/** 用户无犯罪记录证明 */
|
|
2860
|
+
userProfileNoCriminalRecords?: UserProfileNoCriminalRecord[];
|
|
2861
|
+
/** 用户体检表 */
|
|
2862
|
+
userProfilePhysicalExaminations?: UserProfilePhysicalExamination[];
|
|
2863
|
+
/** 退伍证号 */
|
|
2864
|
+
veteransCertificateNumber?: string;
|
|
2652
2865
|
}
|
|
2653
2866
|
export declare class UsernamePasswordLoginForm {
|
|
2654
2867
|
/** 用户登录名 */
|
|
@@ -3563,7 +3776,7 @@ export declare class GetRoleParams {
|
|
|
3563
3776
|
scope?: string;
|
|
3564
3777
|
type?: "Auditing" | "Common" | "Security" | "System" | "Work";
|
|
3565
3778
|
}
|
|
3566
|
-
export declare class
|
|
3779
|
+
export declare class ExistParams2 {
|
|
3567
3780
|
/** @format int64 */
|
|
3568
3781
|
createUser?: number;
|
|
3569
3782
|
department?: string;
|
|
@@ -3759,7 +3972,7 @@ export declare class ToOssParams {
|
|
|
3759
3972
|
export declare class UploadPayload {
|
|
3760
3973
|
file?: File;
|
|
3761
3974
|
}
|
|
3762
|
-
export declare class
|
|
3975
|
+
export declare class ByIdParams9 {
|
|
3763
3976
|
/** format */
|
|
3764
3977
|
format?: string;
|
|
3765
3978
|
/** id */
|
|
@@ -4081,7 +4294,7 @@ export declare class CacheClearParams {
|
|
|
4081
4294
|
/** username */
|
|
4082
4295
|
username: string;
|
|
4083
4296
|
}
|
|
4084
|
-
export declare class
|
|
4297
|
+
export declare class ExistParams6 {
|
|
4085
4298
|
/** 根据可管理部门id查询。支持多选 */
|
|
4086
4299
|
adminDepartmentId?: number[];
|
|
4087
4300
|
/** 基于业务部门业务标识匹配 */
|
|
@@ -6863,7 +7076,7 @@ declare class Api {
|
|
|
6863
7076
|
* @response `403` `void` Forbidden
|
|
6864
7077
|
* @response `404` `void` Not Found
|
|
6865
7078
|
*/
|
|
6866
|
-
exist: (query:
|
|
7079
|
+
exist: (query: ExistParams2, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
|
|
6867
7080
|
/**
|
|
6868
7081
|
* @description 所需权限:role:list
|
|
6869
7082
|
*
|
|
@@ -7045,7 +7258,7 @@ declare class Api {
|
|
|
7045
7258
|
};
|
|
7046
7259
|
settings: {
|
|
7047
7260
|
/**
|
|
7048
|
-
*
|
|
7261
|
+
* No description
|
|
7049
7262
|
*
|
|
7050
7263
|
* @tags settings
|
|
7051
7264
|
* @name GetConfig
|
|
@@ -7476,7 +7689,7 @@ declare class Api {
|
|
|
7476
7689
|
* @response `403` `void` Forbidden
|
|
7477
7690
|
* @response `404` `void` Not Found
|
|
7478
7691
|
*/
|
|
7479
|
-
byId: ({ id, ...query }:
|
|
7692
|
+
byId: ({ id, ...query }: ByIdParams9, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<Resource>;
|
|
7480
7693
|
/**
|
|
7481
7694
|
* No description
|
|
7482
7695
|
*
|
|
@@ -8240,7 +8453,7 @@ declare class Api {
|
|
|
8240
8453
|
* @response `403` `void` Forbidden
|
|
8241
8454
|
* @response `404` `void` Not Found
|
|
8242
8455
|
*/
|
|
8243
|
-
exist: (query:
|
|
8456
|
+
exist: (query: ExistParams6, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<boolean>;
|
|
8244
8457
|
/**
|
|
8245
8458
|
* @description 所需权限:user:admin
|
|
8246
8459
|
*
|