@gizone/rrs-client 4.2.0-alpha.299 → 4.2.0-alpha.300
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/apis/access-api.ts +56 -17
- package/dist/apis/access-api.d.ts +34 -10
- package/dist/apis/access-api.js +28 -13
- package/dist/esm/apis/access-api.d.ts +34 -10
- package/dist/esm/apis/access-api.js +28 -13
- package/dist/esm/models/access-vehicle-type-enum.d.ts +1 -1
- package/dist/esm/models/access-vehicle-type-enum.js +1 -1
- package/dist/esm/models/access-whitelist-application-update-vo.d.ts +0 -63
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/models/access-vehicle-type-enum.d.ts +1 -1
- package/dist/models/access-vehicle-type-enum.js +1 -1
- package/dist/models/access-whitelist-application-update-vo.d.ts +0 -63
- package/dist/models/sys-user.d.ts +4 -4
- package/models/access-vehicle-type-enum.ts +1 -1
- package/models/access-whitelist-application-update-vo.ts +0 -71
- package/models/sys-user.ts +4 -4
- package/package.json +1 -1
package/apis/access-api.ts
CHANGED
|
@@ -1348,12 +1348,15 @@ export const AccessApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
1348
1348
|
* @param {number} pageSize 每页数量
|
|
1349
1349
|
* @param {string} [searchValue] 搜索值
|
|
1350
1350
|
* @param {number} [accessCompanyId] 访问公司
|
|
1351
|
-
* @param {AccessVisitorPersonTypeEnum} [
|
|
1352
|
-
* @param {AccessWhitelistApplicationStatusEnum} [
|
|
1351
|
+
* @param {Array<AccessVisitorPersonTypeEnum>} [accessVisitorPersonTypes] 访问人员类型
|
|
1352
|
+
* @param {Array<AccessWhitelistApplicationStatusEnum>} [applicationStatuses] 申请状态
|
|
1353
|
+
* @param {string} [applicantName] 申请人名称
|
|
1354
|
+
* @param {string} [applicantPhone] 申请人电话 电话、车牌都不为空的情况下如果有一个命中就会返回
|
|
1355
|
+
* @param {string} [applicantLicensePlate] 申请人车牌
|
|
1353
1356
|
* @param {*} [options] Override http request option.
|
|
1354
1357
|
* @throws {RequiredError}
|
|
1355
1358
|
*/
|
|
1356
|
-
accessWhitelistApplicationList: async (parkId: number, page: number, pageSize: number, searchValue?: string, accessCompanyId?: number,
|
|
1359
|
+
accessWhitelistApplicationList: async (parkId: number, page: number, pageSize: number, searchValue?: string, accessCompanyId?: number, accessVisitorPersonTypes?: Array<AccessVisitorPersonTypeEnum>, applicationStatuses?: Array<AccessWhitelistApplicationStatusEnum>, applicantName?: string, applicantPhone?: string, applicantLicensePlate?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1357
1360
|
// verify required parameter 'parkId' is not null or undefined
|
|
1358
1361
|
assertParamExists('accessWhitelistApplicationList', 'parkId', parkId)
|
|
1359
1362
|
// verify required parameter 'page' is not null or undefined
|
|
@@ -1396,12 +1399,24 @@ export const AccessApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
1396
1399
|
localVarQueryParameter['accessCompanyId'] = accessCompanyId;
|
|
1397
1400
|
}
|
|
1398
1401
|
|
|
1399
|
-
if (
|
|
1400
|
-
localVarQueryParameter['
|
|
1402
|
+
if (accessVisitorPersonTypes) {
|
|
1403
|
+
localVarQueryParameter['accessVisitorPersonTypes'] = accessVisitorPersonTypes;
|
|
1401
1404
|
}
|
|
1402
1405
|
|
|
1403
|
-
if (
|
|
1404
|
-
localVarQueryParameter['
|
|
1406
|
+
if (applicationStatuses) {
|
|
1407
|
+
localVarQueryParameter['applicationStatuses'] = applicationStatuses;
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1410
|
+
if (applicantName !== undefined) {
|
|
1411
|
+
localVarQueryParameter['applicantName'] = applicantName;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
if (applicantPhone !== undefined) {
|
|
1415
|
+
localVarQueryParameter['applicantPhone'] = applicantPhone;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
if (applicantLicensePlate !== undefined) {
|
|
1419
|
+
localVarQueryParameter['applicantLicensePlate'] = applicantLicensePlate;
|
|
1405
1420
|
}
|
|
1406
1421
|
|
|
1407
1422
|
|
|
@@ -2196,13 +2211,16 @@ export const AccessApiFp = function(configuration?: Configuration) {
|
|
|
2196
2211
|
* @param {number} pageSize 每页数量
|
|
2197
2212
|
* @param {string} [searchValue] 搜索值
|
|
2198
2213
|
* @param {number} [accessCompanyId] 访问公司
|
|
2199
|
-
* @param {AccessVisitorPersonTypeEnum} [
|
|
2200
|
-
* @param {AccessWhitelistApplicationStatusEnum} [
|
|
2214
|
+
* @param {Array<AccessVisitorPersonTypeEnum>} [accessVisitorPersonTypes] 访问人员类型
|
|
2215
|
+
* @param {Array<AccessWhitelistApplicationStatusEnum>} [applicationStatuses] 申请状态
|
|
2216
|
+
* @param {string} [applicantName] 申请人名称
|
|
2217
|
+
* @param {string} [applicantPhone] 申请人电话 电话、车牌都不为空的情况下如果有一个命中就会返回
|
|
2218
|
+
* @param {string} [applicantLicensePlate] 申请人车牌
|
|
2201
2219
|
* @param {*} [options] Override http request option.
|
|
2202
2220
|
* @throws {RequiredError}
|
|
2203
2221
|
*/
|
|
2204
|
-
async accessWhitelistApplicationList(parkId: number, page: number, pageSize: number, searchValue?: string, accessCompanyId?: number,
|
|
2205
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.accessWhitelistApplicationList(parkId, page, pageSize, searchValue, accessCompanyId,
|
|
2222
|
+
async accessWhitelistApplicationList(parkId: number, page: number, pageSize: number, searchValue?: string, accessCompanyId?: number, accessVisitorPersonTypes?: Array<AccessVisitorPersonTypeEnum>, applicationStatuses?: Array<AccessWhitelistApplicationStatusEnum>, applicantName?: string, applicantPhone?: string, applicantLicensePlate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoAccessWhitelistApplicationDetailsDto>> {
|
|
2223
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.accessWhitelistApplicationList(parkId, page, pageSize, searchValue, accessCompanyId, accessVisitorPersonTypes, applicationStatuses, applicantName, applicantPhone, applicantLicensePlate, options);
|
|
2206
2224
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2207
2225
|
const localVarOperationServerBasePath = operationServerMap['AccessApi.accessWhitelistApplicationList']?.[localVarOperationServerIndex]?.url;
|
|
2208
2226
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2623,7 +2641,7 @@ export const AccessApiFactory = function (configuration?: Configuration, basePat
|
|
|
2623
2641
|
* @throws {RequiredError}
|
|
2624
2642
|
*/
|
|
2625
2643
|
accessWhitelistApplicationList(requestParameters: AccessApiAccessWhitelistApplicationListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoAccessWhitelistApplicationDetailsDto> {
|
|
2626
|
-
return localVarFp.accessWhitelistApplicationList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.accessCompanyId, requestParameters.
|
|
2644
|
+
return localVarFp.accessWhitelistApplicationList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.accessCompanyId, requestParameters.accessVisitorPersonTypes, requestParameters.applicationStatuses, requestParameters.applicantName, requestParameters.applicantPhone, requestParameters.applicantLicensePlate, options).then((request) => request(axios, basePath));
|
|
2627
2645
|
},
|
|
2628
2646
|
/**
|
|
2629
2647
|
* 根据白名单申请ID查询对应的流程记录
|
|
@@ -3300,17 +3318,38 @@ export interface AccessApiAccessWhitelistApplicationListRequest {
|
|
|
3300
3318
|
|
|
3301
3319
|
/**
|
|
3302
3320
|
* 访问人员类型
|
|
3303
|
-
* @type {AccessVisitorPersonTypeEnum}
|
|
3321
|
+
* @type {Array<AccessVisitorPersonTypeEnum>}
|
|
3304
3322
|
* @memberof AccessApiAccessWhitelistApplicationList
|
|
3305
3323
|
*/
|
|
3306
|
-
readonly
|
|
3324
|
+
readonly accessVisitorPersonTypes?: Array<AccessVisitorPersonTypeEnum>
|
|
3307
3325
|
|
|
3308
3326
|
/**
|
|
3309
3327
|
* 申请状态
|
|
3310
|
-
* @type {AccessWhitelistApplicationStatusEnum}
|
|
3328
|
+
* @type {Array<AccessWhitelistApplicationStatusEnum>}
|
|
3311
3329
|
* @memberof AccessApiAccessWhitelistApplicationList
|
|
3312
3330
|
*/
|
|
3313
|
-
readonly
|
|
3331
|
+
readonly applicationStatuses?: Array<AccessWhitelistApplicationStatusEnum>
|
|
3332
|
+
|
|
3333
|
+
/**
|
|
3334
|
+
* 申请人名称
|
|
3335
|
+
* @type {string}
|
|
3336
|
+
* @memberof AccessApiAccessWhitelistApplicationList
|
|
3337
|
+
*/
|
|
3338
|
+
readonly applicantName?: string
|
|
3339
|
+
|
|
3340
|
+
/**
|
|
3341
|
+
* 申请人电话 电话、车牌都不为空的情况下如果有一个命中就会返回
|
|
3342
|
+
* @type {string}
|
|
3343
|
+
* @memberof AccessApiAccessWhitelistApplicationList
|
|
3344
|
+
*/
|
|
3345
|
+
readonly applicantPhone?: string
|
|
3346
|
+
|
|
3347
|
+
/**
|
|
3348
|
+
* 申请人车牌
|
|
3349
|
+
* @type {string}
|
|
3350
|
+
* @memberof AccessApiAccessWhitelistApplicationList
|
|
3351
|
+
*/
|
|
3352
|
+
readonly applicantLicensePlate?: string
|
|
3314
3353
|
}
|
|
3315
3354
|
|
|
3316
3355
|
/**
|
|
@@ -3816,7 +3855,7 @@ export class AccessApi extends BaseAPI {
|
|
|
3816
3855
|
* @memberof AccessApi
|
|
3817
3856
|
*/
|
|
3818
3857
|
public accessWhitelistApplicationList(requestParameters: AccessApiAccessWhitelistApplicationListRequest, options?: RawAxiosRequestConfig) {
|
|
3819
|
-
return AccessApiFp(this.configuration).accessWhitelistApplicationList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.accessCompanyId, requestParameters.
|
|
3858
|
+
return AccessApiFp(this.configuration).accessWhitelistApplicationList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.accessCompanyId, requestParameters.accessVisitorPersonTypes, requestParameters.applicationStatuses, requestParameters.applicantName, requestParameters.applicantPhone, requestParameters.applicantLicensePlate, options).then((request) => request(this.axios, this.basePath));
|
|
3820
3859
|
}
|
|
3821
3860
|
|
|
3822
3861
|
/**
|
|
@@ -310,12 +310,15 @@ export declare const AccessApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
310
310
|
* @param {number} pageSize 每页数量
|
|
311
311
|
* @param {string} [searchValue] 搜索值
|
|
312
312
|
* @param {number} [accessCompanyId] 访问公司
|
|
313
|
-
* @param {AccessVisitorPersonTypeEnum} [
|
|
314
|
-
* @param {AccessWhitelistApplicationStatusEnum} [
|
|
313
|
+
* @param {Array<AccessVisitorPersonTypeEnum>} [accessVisitorPersonTypes] 访问人员类型
|
|
314
|
+
* @param {Array<AccessWhitelistApplicationStatusEnum>} [applicationStatuses] 申请状态
|
|
315
|
+
* @param {string} [applicantName] 申请人名称
|
|
316
|
+
* @param {string} [applicantPhone] 申请人电话 电话、车牌都不为空的情况下如果有一个命中就会返回
|
|
317
|
+
* @param {string} [applicantLicensePlate] 申请人车牌
|
|
315
318
|
* @param {*} [options] Override http request option.
|
|
316
319
|
* @throws {RequiredError}
|
|
317
320
|
*/
|
|
318
|
-
accessWhitelistApplicationList: (parkId: number, page: number, pageSize: number, searchValue?: string, accessCompanyId?: number,
|
|
321
|
+
accessWhitelistApplicationList: (parkId: number, page: number, pageSize: number, searchValue?: string, accessCompanyId?: number, accessVisitorPersonTypes?: Array<AccessVisitorPersonTypeEnum>, applicationStatuses?: Array<AccessWhitelistApplicationStatusEnum>, applicantName?: string, applicantPhone?: string, applicantLicensePlate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
319
322
|
/**
|
|
320
323
|
* 根据白名单申请ID查询对应的流程记录
|
|
321
324
|
* @summary 查询白名单申请流程记录
|
|
@@ -654,12 +657,15 @@ export declare const AccessApiFp: (configuration?: Configuration) => {
|
|
|
654
657
|
* @param {number} pageSize 每页数量
|
|
655
658
|
* @param {string} [searchValue] 搜索值
|
|
656
659
|
* @param {number} [accessCompanyId] 访问公司
|
|
657
|
-
* @param {AccessVisitorPersonTypeEnum} [
|
|
658
|
-
* @param {AccessWhitelistApplicationStatusEnum} [
|
|
660
|
+
* @param {Array<AccessVisitorPersonTypeEnum>} [accessVisitorPersonTypes] 访问人员类型
|
|
661
|
+
* @param {Array<AccessWhitelistApplicationStatusEnum>} [applicationStatuses] 申请状态
|
|
662
|
+
* @param {string} [applicantName] 申请人名称
|
|
663
|
+
* @param {string} [applicantPhone] 申请人电话 电话、车牌都不为空的情况下如果有一个命中就会返回
|
|
664
|
+
* @param {string} [applicantLicensePlate] 申请人车牌
|
|
659
665
|
* @param {*} [options] Override http request option.
|
|
660
666
|
* @throws {RequiredError}
|
|
661
667
|
*/
|
|
662
|
-
accessWhitelistApplicationList(parkId: number, page: number, pageSize: number, searchValue?: string, accessCompanyId?: number,
|
|
668
|
+
accessWhitelistApplicationList(parkId: number, page: number, pageSize: number, searchValue?: string, accessCompanyId?: number, accessVisitorPersonTypes?: Array<AccessVisitorPersonTypeEnum>, applicationStatuses?: Array<AccessWhitelistApplicationStatusEnum>, applicantName?: string, applicantPhone?: string, applicantLicensePlate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoAccessWhitelistApplicationDetailsDto>>;
|
|
663
669
|
/**
|
|
664
670
|
* 根据白名单申请ID查询对应的流程记录
|
|
665
671
|
* @summary 查询白名单申请流程记录
|
|
@@ -1569,16 +1575,34 @@ export interface AccessApiAccessWhitelistApplicationListRequest {
|
|
|
1569
1575
|
readonly accessCompanyId?: number;
|
|
1570
1576
|
/**
|
|
1571
1577
|
* 访问人员类型
|
|
1572
|
-
* @type {AccessVisitorPersonTypeEnum}
|
|
1578
|
+
* @type {Array<AccessVisitorPersonTypeEnum>}
|
|
1573
1579
|
* @memberof AccessApiAccessWhitelistApplicationList
|
|
1574
1580
|
*/
|
|
1575
|
-
readonly
|
|
1581
|
+
readonly accessVisitorPersonTypes?: Array<AccessVisitorPersonTypeEnum>;
|
|
1576
1582
|
/**
|
|
1577
1583
|
* 申请状态
|
|
1578
|
-
* @type {AccessWhitelistApplicationStatusEnum}
|
|
1584
|
+
* @type {Array<AccessWhitelistApplicationStatusEnum>}
|
|
1579
1585
|
* @memberof AccessApiAccessWhitelistApplicationList
|
|
1580
1586
|
*/
|
|
1581
|
-
readonly
|
|
1587
|
+
readonly applicationStatuses?: Array<AccessWhitelistApplicationStatusEnum>;
|
|
1588
|
+
/**
|
|
1589
|
+
* 申请人名称
|
|
1590
|
+
* @type {string}
|
|
1591
|
+
* @memberof AccessApiAccessWhitelistApplicationList
|
|
1592
|
+
*/
|
|
1593
|
+
readonly applicantName?: string;
|
|
1594
|
+
/**
|
|
1595
|
+
* 申请人电话 电话、车牌都不为空的情况下如果有一个命中就会返回
|
|
1596
|
+
* @type {string}
|
|
1597
|
+
* @memberof AccessApiAccessWhitelistApplicationList
|
|
1598
|
+
*/
|
|
1599
|
+
readonly applicantPhone?: string;
|
|
1600
|
+
/**
|
|
1601
|
+
* 申请人车牌
|
|
1602
|
+
* @type {string}
|
|
1603
|
+
* @memberof AccessApiAccessWhitelistApplicationList
|
|
1604
|
+
*/
|
|
1605
|
+
readonly applicantLicensePlate?: string;
|
|
1582
1606
|
}
|
|
1583
1607
|
/**
|
|
1584
1608
|
* Request parameters for accessWhitelistApplicationProcess operation in AccessApi.
|
package/dist/apis/access-api.js
CHANGED
|
@@ -1075,12 +1075,15 @@ const AccessApiAxiosParamCreator = function (configuration) {
|
|
|
1075
1075
|
* @param {number} pageSize 每页数量
|
|
1076
1076
|
* @param {string} [searchValue] 搜索值
|
|
1077
1077
|
* @param {number} [accessCompanyId] 访问公司
|
|
1078
|
-
* @param {AccessVisitorPersonTypeEnum} [
|
|
1079
|
-
* @param {AccessWhitelistApplicationStatusEnum} [
|
|
1078
|
+
* @param {Array<AccessVisitorPersonTypeEnum>} [accessVisitorPersonTypes] 访问人员类型
|
|
1079
|
+
* @param {Array<AccessWhitelistApplicationStatusEnum>} [applicationStatuses] 申请状态
|
|
1080
|
+
* @param {string} [applicantName] 申请人名称
|
|
1081
|
+
* @param {string} [applicantPhone] 申请人电话 电话、车牌都不为空的情况下如果有一个命中就会返回
|
|
1082
|
+
* @param {string} [applicantLicensePlate] 申请人车牌
|
|
1080
1083
|
* @param {*} [options] Override http request option.
|
|
1081
1084
|
* @throws {RequiredError}
|
|
1082
1085
|
*/
|
|
1083
|
-
accessWhitelistApplicationList: (parkId_1, page_1, pageSize_1, searchValue_1, accessCompanyId_1,
|
|
1086
|
+
accessWhitelistApplicationList: (parkId_1, page_1, pageSize_1, searchValue_1, accessCompanyId_1, accessVisitorPersonTypes_1, applicationStatuses_1, applicantName_1, applicantPhone_1, applicantLicensePlate_1, ...args_1) => __awaiter(this, [parkId_1, page_1, pageSize_1, searchValue_1, accessCompanyId_1, accessVisitorPersonTypes_1, applicationStatuses_1, applicantName_1, applicantPhone_1, applicantLicensePlate_1, ...args_1], void 0, function* (parkId, page, pageSize, searchValue, accessCompanyId, accessVisitorPersonTypes, applicationStatuses, applicantName, applicantPhone, applicantLicensePlate, options = {}) {
|
|
1084
1087
|
// verify required parameter 'parkId' is not null or undefined
|
|
1085
1088
|
(0, common_1.assertParamExists)('accessWhitelistApplicationList', 'parkId', parkId);
|
|
1086
1089
|
// verify required parameter 'page' is not null or undefined
|
|
@@ -1115,11 +1118,20 @@ const AccessApiAxiosParamCreator = function (configuration) {
|
|
|
1115
1118
|
if (accessCompanyId !== undefined) {
|
|
1116
1119
|
localVarQueryParameter['accessCompanyId'] = accessCompanyId;
|
|
1117
1120
|
}
|
|
1118
|
-
if (
|
|
1119
|
-
localVarQueryParameter['
|
|
1121
|
+
if (accessVisitorPersonTypes) {
|
|
1122
|
+
localVarQueryParameter['accessVisitorPersonTypes'] = accessVisitorPersonTypes;
|
|
1120
1123
|
}
|
|
1121
|
-
if (
|
|
1122
|
-
localVarQueryParameter['
|
|
1124
|
+
if (applicationStatuses) {
|
|
1125
|
+
localVarQueryParameter['applicationStatuses'] = applicationStatuses;
|
|
1126
|
+
}
|
|
1127
|
+
if (applicantName !== undefined) {
|
|
1128
|
+
localVarQueryParameter['applicantName'] = applicantName;
|
|
1129
|
+
}
|
|
1130
|
+
if (applicantPhone !== undefined) {
|
|
1131
|
+
localVarQueryParameter['applicantPhone'] = applicantPhone;
|
|
1132
|
+
}
|
|
1133
|
+
if (applicantLicensePlate !== undefined) {
|
|
1134
|
+
localVarQueryParameter['applicantLicensePlate'] = applicantLicensePlate;
|
|
1123
1135
|
}
|
|
1124
1136
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1125
1137
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1933,15 +1945,18 @@ const AccessApiFp = function (configuration) {
|
|
|
1933
1945
|
* @param {number} pageSize 每页数量
|
|
1934
1946
|
* @param {string} [searchValue] 搜索值
|
|
1935
1947
|
* @param {number} [accessCompanyId] 访问公司
|
|
1936
|
-
* @param {AccessVisitorPersonTypeEnum} [
|
|
1937
|
-
* @param {AccessWhitelistApplicationStatusEnum} [
|
|
1948
|
+
* @param {Array<AccessVisitorPersonTypeEnum>} [accessVisitorPersonTypes] 访问人员类型
|
|
1949
|
+
* @param {Array<AccessWhitelistApplicationStatusEnum>} [applicationStatuses] 申请状态
|
|
1950
|
+
* @param {string} [applicantName] 申请人名称
|
|
1951
|
+
* @param {string} [applicantPhone] 申请人电话 电话、车牌都不为空的情况下如果有一个命中就会返回
|
|
1952
|
+
* @param {string} [applicantLicensePlate] 申请人车牌
|
|
1938
1953
|
* @param {*} [options] Override http request option.
|
|
1939
1954
|
* @throws {RequiredError}
|
|
1940
1955
|
*/
|
|
1941
|
-
accessWhitelistApplicationList(parkId, page, pageSize, searchValue, accessCompanyId,
|
|
1956
|
+
accessWhitelistApplicationList(parkId, page, pageSize, searchValue, accessCompanyId, accessVisitorPersonTypes, applicationStatuses, applicantName, applicantPhone, applicantLicensePlate, options) {
|
|
1942
1957
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1943
1958
|
var _a, _b, _c;
|
|
1944
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.accessWhitelistApplicationList(parkId, page, pageSize, searchValue, accessCompanyId,
|
|
1959
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.accessWhitelistApplicationList(parkId, page, pageSize, searchValue, accessCompanyId, accessVisitorPersonTypes, applicationStatuses, applicantName, applicantPhone, applicantLicensePlate, options);
|
|
1945
1960
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1946
1961
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AccessApi.accessWhitelistApplicationList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1947
1962
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2390,7 +2405,7 @@ const AccessApiFactory = function (configuration, basePath, axios) {
|
|
|
2390
2405
|
* @throws {RequiredError}
|
|
2391
2406
|
*/
|
|
2392
2407
|
accessWhitelistApplicationList(requestParameters, options) {
|
|
2393
|
-
return localVarFp.accessWhitelistApplicationList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.accessCompanyId, requestParameters.
|
|
2408
|
+
return localVarFp.accessWhitelistApplicationList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.accessCompanyId, requestParameters.accessVisitorPersonTypes, requestParameters.applicationStatuses, requestParameters.applicantName, requestParameters.applicantPhone, requestParameters.applicantLicensePlate, options).then((request) => request(axios, basePath));
|
|
2394
2409
|
},
|
|
2395
2410
|
/**
|
|
2396
2411
|
* 根据白名单申请ID查询对应的流程记录
|
|
@@ -2806,7 +2821,7 @@ class AccessApi extends base_1.BaseAPI {
|
|
|
2806
2821
|
* @memberof AccessApi
|
|
2807
2822
|
*/
|
|
2808
2823
|
accessWhitelistApplicationList(requestParameters, options) {
|
|
2809
|
-
return (0, exports.AccessApiFp)(this.configuration).accessWhitelistApplicationList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.accessCompanyId, requestParameters.
|
|
2824
|
+
return (0, exports.AccessApiFp)(this.configuration).accessWhitelistApplicationList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.accessCompanyId, requestParameters.accessVisitorPersonTypes, requestParameters.applicationStatuses, requestParameters.applicantName, requestParameters.applicantPhone, requestParameters.applicantLicensePlate, options).then((request) => request(this.axios, this.basePath));
|
|
2810
2825
|
}
|
|
2811
2826
|
/**
|
|
2812
2827
|
* 根据白名单申请ID查询对应的流程记录
|
|
@@ -310,12 +310,15 @@ export declare const AccessApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
310
310
|
* @param {number} pageSize 每页数量
|
|
311
311
|
* @param {string} [searchValue] 搜索值
|
|
312
312
|
* @param {number} [accessCompanyId] 访问公司
|
|
313
|
-
* @param {AccessVisitorPersonTypeEnum} [
|
|
314
|
-
* @param {AccessWhitelistApplicationStatusEnum} [
|
|
313
|
+
* @param {Array<AccessVisitorPersonTypeEnum>} [accessVisitorPersonTypes] 访问人员类型
|
|
314
|
+
* @param {Array<AccessWhitelistApplicationStatusEnum>} [applicationStatuses] 申请状态
|
|
315
|
+
* @param {string} [applicantName] 申请人名称
|
|
316
|
+
* @param {string} [applicantPhone] 申请人电话 电话、车牌都不为空的情况下如果有一个命中就会返回
|
|
317
|
+
* @param {string} [applicantLicensePlate] 申请人车牌
|
|
315
318
|
* @param {*} [options] Override http request option.
|
|
316
319
|
* @throws {RequiredError}
|
|
317
320
|
*/
|
|
318
|
-
accessWhitelistApplicationList: (parkId: number, page: number, pageSize: number, searchValue?: string, accessCompanyId?: number,
|
|
321
|
+
accessWhitelistApplicationList: (parkId: number, page: number, pageSize: number, searchValue?: string, accessCompanyId?: number, accessVisitorPersonTypes?: Array<AccessVisitorPersonTypeEnum>, applicationStatuses?: Array<AccessWhitelistApplicationStatusEnum>, applicantName?: string, applicantPhone?: string, applicantLicensePlate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
319
322
|
/**
|
|
320
323
|
* 根据白名单申请ID查询对应的流程记录
|
|
321
324
|
* @summary 查询白名单申请流程记录
|
|
@@ -654,12 +657,15 @@ export declare const AccessApiFp: (configuration?: Configuration) => {
|
|
|
654
657
|
* @param {number} pageSize 每页数量
|
|
655
658
|
* @param {string} [searchValue] 搜索值
|
|
656
659
|
* @param {number} [accessCompanyId] 访问公司
|
|
657
|
-
* @param {AccessVisitorPersonTypeEnum} [
|
|
658
|
-
* @param {AccessWhitelistApplicationStatusEnum} [
|
|
660
|
+
* @param {Array<AccessVisitorPersonTypeEnum>} [accessVisitorPersonTypes] 访问人员类型
|
|
661
|
+
* @param {Array<AccessWhitelistApplicationStatusEnum>} [applicationStatuses] 申请状态
|
|
662
|
+
* @param {string} [applicantName] 申请人名称
|
|
663
|
+
* @param {string} [applicantPhone] 申请人电话 电话、车牌都不为空的情况下如果有一个命中就会返回
|
|
664
|
+
* @param {string} [applicantLicensePlate] 申请人车牌
|
|
659
665
|
* @param {*} [options] Override http request option.
|
|
660
666
|
* @throws {RequiredError}
|
|
661
667
|
*/
|
|
662
|
-
accessWhitelistApplicationList(parkId: number, page: number, pageSize: number, searchValue?: string, accessCompanyId?: number,
|
|
668
|
+
accessWhitelistApplicationList(parkId: number, page: number, pageSize: number, searchValue?: string, accessCompanyId?: number, accessVisitorPersonTypes?: Array<AccessVisitorPersonTypeEnum>, applicationStatuses?: Array<AccessWhitelistApplicationStatusEnum>, applicantName?: string, applicantPhone?: string, applicantLicensePlate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoAccessWhitelistApplicationDetailsDto>>;
|
|
663
669
|
/**
|
|
664
670
|
* 根据白名单申请ID查询对应的流程记录
|
|
665
671
|
* @summary 查询白名单申请流程记录
|
|
@@ -1569,16 +1575,34 @@ export interface AccessApiAccessWhitelistApplicationListRequest {
|
|
|
1569
1575
|
readonly accessCompanyId?: number;
|
|
1570
1576
|
/**
|
|
1571
1577
|
* 访问人员类型
|
|
1572
|
-
* @type {AccessVisitorPersonTypeEnum}
|
|
1578
|
+
* @type {Array<AccessVisitorPersonTypeEnum>}
|
|
1573
1579
|
* @memberof AccessApiAccessWhitelistApplicationList
|
|
1574
1580
|
*/
|
|
1575
|
-
readonly
|
|
1581
|
+
readonly accessVisitorPersonTypes?: Array<AccessVisitorPersonTypeEnum>;
|
|
1576
1582
|
/**
|
|
1577
1583
|
* 申请状态
|
|
1578
|
-
* @type {AccessWhitelistApplicationStatusEnum}
|
|
1584
|
+
* @type {Array<AccessWhitelistApplicationStatusEnum>}
|
|
1579
1585
|
* @memberof AccessApiAccessWhitelistApplicationList
|
|
1580
1586
|
*/
|
|
1581
|
-
readonly
|
|
1587
|
+
readonly applicationStatuses?: Array<AccessWhitelistApplicationStatusEnum>;
|
|
1588
|
+
/**
|
|
1589
|
+
* 申请人名称
|
|
1590
|
+
* @type {string}
|
|
1591
|
+
* @memberof AccessApiAccessWhitelistApplicationList
|
|
1592
|
+
*/
|
|
1593
|
+
readonly applicantName?: string;
|
|
1594
|
+
/**
|
|
1595
|
+
* 申请人电话 电话、车牌都不为空的情况下如果有一个命中就会返回
|
|
1596
|
+
* @type {string}
|
|
1597
|
+
* @memberof AccessApiAccessWhitelistApplicationList
|
|
1598
|
+
*/
|
|
1599
|
+
readonly applicantPhone?: string;
|
|
1600
|
+
/**
|
|
1601
|
+
* 申请人车牌
|
|
1602
|
+
* @type {string}
|
|
1603
|
+
* @memberof AccessApiAccessWhitelistApplicationList
|
|
1604
|
+
*/
|
|
1605
|
+
readonly applicantLicensePlate?: string;
|
|
1582
1606
|
}
|
|
1583
1607
|
/**
|
|
1584
1608
|
* Request parameters for accessWhitelistApplicationProcess operation in AccessApi.
|
|
@@ -1072,12 +1072,15 @@ export const AccessApiAxiosParamCreator = function (configuration) {
|
|
|
1072
1072
|
* @param {number} pageSize 每页数量
|
|
1073
1073
|
* @param {string} [searchValue] 搜索值
|
|
1074
1074
|
* @param {number} [accessCompanyId] 访问公司
|
|
1075
|
-
* @param {AccessVisitorPersonTypeEnum} [
|
|
1076
|
-
* @param {AccessWhitelistApplicationStatusEnum} [
|
|
1075
|
+
* @param {Array<AccessVisitorPersonTypeEnum>} [accessVisitorPersonTypes] 访问人员类型
|
|
1076
|
+
* @param {Array<AccessWhitelistApplicationStatusEnum>} [applicationStatuses] 申请状态
|
|
1077
|
+
* @param {string} [applicantName] 申请人名称
|
|
1078
|
+
* @param {string} [applicantPhone] 申请人电话 电话、车牌都不为空的情况下如果有一个命中就会返回
|
|
1079
|
+
* @param {string} [applicantLicensePlate] 申请人车牌
|
|
1077
1080
|
* @param {*} [options] Override http request option.
|
|
1078
1081
|
* @throws {RequiredError}
|
|
1079
1082
|
*/
|
|
1080
|
-
accessWhitelistApplicationList: (parkId_1, page_1, pageSize_1, searchValue_1, accessCompanyId_1,
|
|
1083
|
+
accessWhitelistApplicationList: (parkId_1, page_1, pageSize_1, searchValue_1, accessCompanyId_1, accessVisitorPersonTypes_1, applicationStatuses_1, applicantName_1, applicantPhone_1, applicantLicensePlate_1, ...args_1) => __awaiter(this, [parkId_1, page_1, pageSize_1, searchValue_1, accessCompanyId_1, accessVisitorPersonTypes_1, applicationStatuses_1, applicantName_1, applicantPhone_1, applicantLicensePlate_1, ...args_1], void 0, function* (parkId, page, pageSize, searchValue, accessCompanyId, accessVisitorPersonTypes, applicationStatuses, applicantName, applicantPhone, applicantLicensePlate, options = {}) {
|
|
1081
1084
|
// verify required parameter 'parkId' is not null or undefined
|
|
1082
1085
|
assertParamExists('accessWhitelistApplicationList', 'parkId', parkId);
|
|
1083
1086
|
// verify required parameter 'page' is not null or undefined
|
|
@@ -1112,11 +1115,20 @@ export const AccessApiAxiosParamCreator = function (configuration) {
|
|
|
1112
1115
|
if (accessCompanyId !== undefined) {
|
|
1113
1116
|
localVarQueryParameter['accessCompanyId'] = accessCompanyId;
|
|
1114
1117
|
}
|
|
1115
|
-
if (
|
|
1116
|
-
localVarQueryParameter['
|
|
1118
|
+
if (accessVisitorPersonTypes) {
|
|
1119
|
+
localVarQueryParameter['accessVisitorPersonTypes'] = accessVisitorPersonTypes;
|
|
1117
1120
|
}
|
|
1118
|
-
if (
|
|
1119
|
-
localVarQueryParameter['
|
|
1121
|
+
if (applicationStatuses) {
|
|
1122
|
+
localVarQueryParameter['applicationStatuses'] = applicationStatuses;
|
|
1123
|
+
}
|
|
1124
|
+
if (applicantName !== undefined) {
|
|
1125
|
+
localVarQueryParameter['applicantName'] = applicantName;
|
|
1126
|
+
}
|
|
1127
|
+
if (applicantPhone !== undefined) {
|
|
1128
|
+
localVarQueryParameter['applicantPhone'] = applicantPhone;
|
|
1129
|
+
}
|
|
1130
|
+
if (applicantLicensePlate !== undefined) {
|
|
1131
|
+
localVarQueryParameter['applicantLicensePlate'] = applicantLicensePlate;
|
|
1120
1132
|
}
|
|
1121
1133
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1122
1134
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1929,15 +1941,18 @@ export const AccessApiFp = function (configuration) {
|
|
|
1929
1941
|
* @param {number} pageSize 每页数量
|
|
1930
1942
|
* @param {string} [searchValue] 搜索值
|
|
1931
1943
|
* @param {number} [accessCompanyId] 访问公司
|
|
1932
|
-
* @param {AccessVisitorPersonTypeEnum} [
|
|
1933
|
-
* @param {AccessWhitelistApplicationStatusEnum} [
|
|
1944
|
+
* @param {Array<AccessVisitorPersonTypeEnum>} [accessVisitorPersonTypes] 访问人员类型
|
|
1945
|
+
* @param {Array<AccessWhitelistApplicationStatusEnum>} [applicationStatuses] 申请状态
|
|
1946
|
+
* @param {string} [applicantName] 申请人名称
|
|
1947
|
+
* @param {string} [applicantPhone] 申请人电话 电话、车牌都不为空的情况下如果有一个命中就会返回
|
|
1948
|
+
* @param {string} [applicantLicensePlate] 申请人车牌
|
|
1934
1949
|
* @param {*} [options] Override http request option.
|
|
1935
1950
|
* @throws {RequiredError}
|
|
1936
1951
|
*/
|
|
1937
|
-
accessWhitelistApplicationList(parkId, page, pageSize, searchValue, accessCompanyId,
|
|
1952
|
+
accessWhitelistApplicationList(parkId, page, pageSize, searchValue, accessCompanyId, accessVisitorPersonTypes, applicationStatuses, applicantName, applicantPhone, applicantLicensePlate, options) {
|
|
1938
1953
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1939
1954
|
var _a, _b, _c;
|
|
1940
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.accessWhitelistApplicationList(parkId, page, pageSize, searchValue, accessCompanyId,
|
|
1955
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.accessWhitelistApplicationList(parkId, page, pageSize, searchValue, accessCompanyId, accessVisitorPersonTypes, applicationStatuses, applicantName, applicantPhone, applicantLicensePlate, options);
|
|
1941
1956
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1942
1957
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AccessApi.accessWhitelistApplicationList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1943
1958
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2385,7 +2400,7 @@ export const AccessApiFactory = function (configuration, basePath, axios) {
|
|
|
2385
2400
|
* @throws {RequiredError}
|
|
2386
2401
|
*/
|
|
2387
2402
|
accessWhitelistApplicationList(requestParameters, options) {
|
|
2388
|
-
return localVarFp.accessWhitelistApplicationList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.accessCompanyId, requestParameters.
|
|
2403
|
+
return localVarFp.accessWhitelistApplicationList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.accessCompanyId, requestParameters.accessVisitorPersonTypes, requestParameters.applicationStatuses, requestParameters.applicantName, requestParameters.applicantPhone, requestParameters.applicantLicensePlate, options).then((request) => request(axios, basePath));
|
|
2389
2404
|
},
|
|
2390
2405
|
/**
|
|
2391
2406
|
* 根据白名单申请ID查询对应的流程记录
|
|
@@ -2800,7 +2815,7 @@ export class AccessApi extends BaseAPI {
|
|
|
2800
2815
|
* @memberof AccessApi
|
|
2801
2816
|
*/
|
|
2802
2817
|
accessWhitelistApplicationList(requestParameters, options) {
|
|
2803
|
-
return AccessApiFp(this.configuration).accessWhitelistApplicationList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.accessCompanyId, requestParameters.
|
|
2818
|
+
return AccessApiFp(this.configuration).accessWhitelistApplicationList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.accessCompanyId, requestParameters.accessVisitorPersonTypes, requestParameters.applicationStatuses, requestParameters.applicantName, requestParameters.applicantPhone, requestParameters.applicantLicensePlate, options).then((request) => request(this.axios, this.basePath));
|
|
2804
2819
|
}
|
|
2805
2820
|
/**
|
|
2806
2821
|
* 根据白名单申请ID查询对应的流程记录
|
|
@@ -9,9 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type { AccessVehicleLengthEnum } from './access-vehicle-length-enum';
|
|
13
|
-
import type { AccessVehicleTypeEnum } from './access-vehicle-type-enum';
|
|
14
|
-
import type { AccessVisitorPersonTypeEnum } from './access-visitor-person-type-enum';
|
|
15
12
|
import type { WhitelistOtherInfoVo } from './whitelist-other-info-vo';
|
|
16
13
|
/**
|
|
17
14
|
* 出入白名单申请更新参数
|
|
@@ -19,72 +16,12 @@ import type { WhitelistOtherInfoVo } from './whitelist-other-info-vo';
|
|
|
19
16
|
* @interface AccessWhitelistApplicationUpdateVo
|
|
20
17
|
*/
|
|
21
18
|
export interface AccessWhitelistApplicationUpdateVo {
|
|
22
|
-
/**
|
|
23
|
-
* 访问公司
|
|
24
|
-
* @type {number}
|
|
25
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
26
|
-
*/
|
|
27
|
-
'accessCompanyId': number;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {AccessVisitorPersonTypeEnum}
|
|
31
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
32
|
-
*/
|
|
33
|
-
'accessVisitorPersonType': AccessVisitorPersonTypeEnum;
|
|
34
|
-
/**
|
|
35
|
-
* 开始时间
|
|
36
|
-
* @type {string}
|
|
37
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
38
|
-
*/
|
|
39
|
-
'startTime': string;
|
|
40
|
-
/**
|
|
41
|
-
* 结束时间
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
44
|
-
*/
|
|
45
|
-
'endTime': string;
|
|
46
|
-
/**
|
|
47
|
-
* 申请原因
|
|
48
|
-
* @type {string}
|
|
49
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
50
|
-
*/
|
|
51
|
-
'applicantReason': string;
|
|
52
|
-
/**
|
|
53
|
-
* 姓名
|
|
54
|
-
* @type {string}
|
|
55
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
56
|
-
*/
|
|
57
|
-
'applicantName': string;
|
|
58
|
-
/**
|
|
59
|
-
* 申请电话
|
|
60
|
-
* @type {string}
|
|
61
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
62
|
-
*/
|
|
63
|
-
'applicantPhone': string;
|
|
64
19
|
/**
|
|
65
20
|
* 申请人脸图片
|
|
66
21
|
* @type {string}
|
|
67
22
|
* @memberof AccessWhitelistApplicationUpdateVo
|
|
68
23
|
*/
|
|
69
24
|
'applicantFacePhoto'?: string;
|
|
70
|
-
/**
|
|
71
|
-
* 申请车牌号
|
|
72
|
-
* @type {string}
|
|
73
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
74
|
-
*/
|
|
75
|
-
'applicantLicensePlate'?: string;
|
|
76
|
-
/**
|
|
77
|
-
*
|
|
78
|
-
* @type {AccessVehicleTypeEnum}
|
|
79
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
80
|
-
*/
|
|
81
|
-
'vehicleType'?: AccessVehicleTypeEnum;
|
|
82
|
-
/**
|
|
83
|
-
*
|
|
84
|
-
* @type {AccessVehicleLengthEnum}
|
|
85
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
86
|
-
*/
|
|
87
|
-
'vehicleLength'?: AccessVehicleLengthEnum;
|
|
88
25
|
/**
|
|
89
26
|
*
|
|
90
27
|
* @type {WhitelistOtherInfoVo}
|
|
@@ -370,14 +370,14 @@ export interface SysUser {
|
|
|
370
370
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
371
371
|
/**
|
|
372
372
|
*
|
|
373
|
-
* @type {
|
|
373
|
+
* @type {string}
|
|
374
374
|
* @memberof SysUser
|
|
375
375
|
*/
|
|
376
|
-
'
|
|
376
|
+
'cid'?: string;
|
|
377
377
|
/**
|
|
378
378
|
*
|
|
379
|
-
* @type {
|
|
379
|
+
* @type {number}
|
|
380
380
|
* @memberof SysUser
|
|
381
381
|
*/
|
|
382
|
-
'
|
|
382
|
+
'cuserId'?: number;
|
|
383
383
|
}
|
|
@@ -9,9 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type { AccessVehicleLengthEnum } from './access-vehicle-length-enum';
|
|
13
|
-
import type { AccessVehicleTypeEnum } from './access-vehicle-type-enum';
|
|
14
|
-
import type { AccessVisitorPersonTypeEnum } from './access-visitor-person-type-enum';
|
|
15
12
|
import type { WhitelistOtherInfoVo } from './whitelist-other-info-vo';
|
|
16
13
|
/**
|
|
17
14
|
* 出入白名单申请更新参数
|
|
@@ -19,72 +16,12 @@ import type { WhitelistOtherInfoVo } from './whitelist-other-info-vo';
|
|
|
19
16
|
* @interface AccessWhitelistApplicationUpdateVo
|
|
20
17
|
*/
|
|
21
18
|
export interface AccessWhitelistApplicationUpdateVo {
|
|
22
|
-
/**
|
|
23
|
-
* 访问公司
|
|
24
|
-
* @type {number}
|
|
25
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
26
|
-
*/
|
|
27
|
-
'accessCompanyId': number;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {AccessVisitorPersonTypeEnum}
|
|
31
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
32
|
-
*/
|
|
33
|
-
'accessVisitorPersonType': AccessVisitorPersonTypeEnum;
|
|
34
|
-
/**
|
|
35
|
-
* 开始时间
|
|
36
|
-
* @type {string}
|
|
37
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
38
|
-
*/
|
|
39
|
-
'startTime': string;
|
|
40
|
-
/**
|
|
41
|
-
* 结束时间
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
44
|
-
*/
|
|
45
|
-
'endTime': string;
|
|
46
|
-
/**
|
|
47
|
-
* 申请原因
|
|
48
|
-
* @type {string}
|
|
49
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
50
|
-
*/
|
|
51
|
-
'applicantReason': string;
|
|
52
|
-
/**
|
|
53
|
-
* 姓名
|
|
54
|
-
* @type {string}
|
|
55
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
56
|
-
*/
|
|
57
|
-
'applicantName': string;
|
|
58
|
-
/**
|
|
59
|
-
* 申请电话
|
|
60
|
-
* @type {string}
|
|
61
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
62
|
-
*/
|
|
63
|
-
'applicantPhone': string;
|
|
64
19
|
/**
|
|
65
20
|
* 申请人脸图片
|
|
66
21
|
* @type {string}
|
|
67
22
|
* @memberof AccessWhitelistApplicationUpdateVo
|
|
68
23
|
*/
|
|
69
24
|
'applicantFacePhoto'?: string;
|
|
70
|
-
/**
|
|
71
|
-
* 申请车牌号
|
|
72
|
-
* @type {string}
|
|
73
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
74
|
-
*/
|
|
75
|
-
'applicantLicensePlate'?: string;
|
|
76
|
-
/**
|
|
77
|
-
*
|
|
78
|
-
* @type {AccessVehicleTypeEnum}
|
|
79
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
80
|
-
*/
|
|
81
|
-
'vehicleType'?: AccessVehicleTypeEnum;
|
|
82
|
-
/**
|
|
83
|
-
*
|
|
84
|
-
* @type {AccessVehicleLengthEnum}
|
|
85
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
86
|
-
*/
|
|
87
|
-
'vehicleLength'?: AccessVehicleLengthEnum;
|
|
88
25
|
/**
|
|
89
26
|
*
|
|
90
27
|
* @type {WhitelistOtherInfoVo}
|
|
@@ -370,14 +370,14 @@ export interface SysUser {
|
|
|
370
370
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
371
371
|
/**
|
|
372
372
|
*
|
|
373
|
-
* @type {
|
|
373
|
+
* @type {string}
|
|
374
374
|
* @memberof SysUser
|
|
375
375
|
*/
|
|
376
|
-
'
|
|
376
|
+
'cid'?: string;
|
|
377
377
|
/**
|
|
378
378
|
*
|
|
379
|
-
* @type {
|
|
379
|
+
* @type {number}
|
|
380
380
|
* @memberof SysUser
|
|
381
381
|
*/
|
|
382
|
-
'
|
|
382
|
+
'cuserId'?: number;
|
|
383
383
|
}
|
|
@@ -13,15 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
// May contain unused imports in some cases
|
|
17
|
-
// @ts-ignore
|
|
18
|
-
import type { AccessVehicleLengthEnum } from './access-vehicle-length-enum';
|
|
19
|
-
// May contain unused imports in some cases
|
|
20
|
-
// @ts-ignore
|
|
21
|
-
import type { AccessVehicleTypeEnum } from './access-vehicle-type-enum';
|
|
22
|
-
// May contain unused imports in some cases
|
|
23
|
-
// @ts-ignore
|
|
24
|
-
import type { AccessVisitorPersonTypeEnum } from './access-visitor-person-type-enum';
|
|
25
16
|
// May contain unused imports in some cases
|
|
26
17
|
// @ts-ignore
|
|
27
18
|
import type { WhitelistOtherInfoVo } from './whitelist-other-info-vo';
|
|
@@ -32,72 +23,12 @@ import type { WhitelistOtherInfoVo } from './whitelist-other-info-vo';
|
|
|
32
23
|
* @interface AccessWhitelistApplicationUpdateVo
|
|
33
24
|
*/
|
|
34
25
|
export interface AccessWhitelistApplicationUpdateVo {
|
|
35
|
-
/**
|
|
36
|
-
* 访问公司
|
|
37
|
-
* @type {number}
|
|
38
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
39
|
-
*/
|
|
40
|
-
'accessCompanyId': number;
|
|
41
|
-
/**
|
|
42
|
-
*
|
|
43
|
-
* @type {AccessVisitorPersonTypeEnum}
|
|
44
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
45
|
-
*/
|
|
46
|
-
'accessVisitorPersonType': AccessVisitorPersonTypeEnum;
|
|
47
|
-
/**
|
|
48
|
-
* 开始时间
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
51
|
-
*/
|
|
52
|
-
'startTime': string;
|
|
53
|
-
/**
|
|
54
|
-
* 结束时间
|
|
55
|
-
* @type {string}
|
|
56
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
57
|
-
*/
|
|
58
|
-
'endTime': string;
|
|
59
|
-
/**
|
|
60
|
-
* 申请原因
|
|
61
|
-
* @type {string}
|
|
62
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
63
|
-
*/
|
|
64
|
-
'applicantReason': string;
|
|
65
|
-
/**
|
|
66
|
-
* 姓名
|
|
67
|
-
* @type {string}
|
|
68
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
69
|
-
*/
|
|
70
|
-
'applicantName': string;
|
|
71
|
-
/**
|
|
72
|
-
* 申请电话
|
|
73
|
-
* @type {string}
|
|
74
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
75
|
-
*/
|
|
76
|
-
'applicantPhone': string;
|
|
77
26
|
/**
|
|
78
27
|
* 申请人脸图片
|
|
79
28
|
* @type {string}
|
|
80
29
|
* @memberof AccessWhitelistApplicationUpdateVo
|
|
81
30
|
*/
|
|
82
31
|
'applicantFacePhoto'?: string;
|
|
83
|
-
/**
|
|
84
|
-
* 申请车牌号
|
|
85
|
-
* @type {string}
|
|
86
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
87
|
-
*/
|
|
88
|
-
'applicantLicensePlate'?: string;
|
|
89
|
-
/**
|
|
90
|
-
*
|
|
91
|
-
* @type {AccessVehicleTypeEnum}
|
|
92
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
93
|
-
*/
|
|
94
|
-
'vehicleType'?: AccessVehicleTypeEnum;
|
|
95
|
-
/**
|
|
96
|
-
*
|
|
97
|
-
* @type {AccessVehicleLengthEnum}
|
|
98
|
-
* @memberof AccessWhitelistApplicationUpdateVo
|
|
99
|
-
*/
|
|
100
|
-
'vehicleLength'?: AccessVehicleLengthEnum;
|
|
101
32
|
/**
|
|
102
33
|
*
|
|
103
34
|
* @type {WhitelistOtherInfoVo}
|
|
@@ -106,5 +37,3 @@ export interface AccessWhitelistApplicationUpdateVo {
|
|
|
106
37
|
'otherInfo'?: WhitelistOtherInfoVo;
|
|
107
38
|
}
|
|
108
39
|
|
|
109
|
-
|
|
110
|
-
|
package/models/sys-user.ts
CHANGED
|
@@ -379,15 +379,15 @@ export interface SysUser {
|
|
|
379
379
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
380
380
|
/**
|
|
381
381
|
*
|
|
382
|
-
* @type {
|
|
382
|
+
* @type {string}
|
|
383
383
|
* @memberof SysUser
|
|
384
384
|
*/
|
|
385
|
-
'
|
|
385
|
+
'cid'?: string;
|
|
386
386
|
/**
|
|
387
387
|
*
|
|
388
|
-
* @type {
|
|
388
|
+
* @type {number}
|
|
389
389
|
* @memberof SysUser
|
|
390
390
|
*/
|
|
391
|
-
'
|
|
391
|
+
'cuserId'?: number;
|
|
392
392
|
}
|
|
393
393
|
|