@gizone/rrs-client 3.11.15-alpha.71 → 3.11.15-alpha.73
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/inspection-standard-api.ts +20 -5
- package/apis/maintenance-standard-api.ts +33 -5
- package/dist/apis/inspection-standard-api.d.ts +11 -2
- package/dist/apis/inspection-standard-api.js +10 -5
- package/dist/apis/maintenance-standard-api.d.ts +19 -2
- package/dist/apis/maintenance-standard-api.js +15 -5
- package/dist/esm/apis/inspection-standard-api.d.ts +11 -2
- package/dist/esm/apis/inspection-standard-api.js +10 -5
- package/dist/esm/apis/maintenance-standard-api.d.ts +19 -2
- package/dist/esm/apis/maintenance-standard-api.js +15 -5
- package/dist/esm/models/get-user-wx200-response.d.ts +10 -10
- package/dist/esm/models/ipage-access-vo.d.ts +6 -6
- package/dist/models/get-user-wx200-response.d.ts +10 -10
- package/dist/models/ipage-access-vo.d.ts +6 -6
- package/models/get-user-wx200-response.ts +10 -10
- package/models/ipage-access-vo.ts +6 -6
- package/package.json +1 -1
|
@@ -38,6 +38,8 @@ import type { JsonResultPageDtoInspectionStandardDTO } from '../models';
|
|
|
38
38
|
// @ts-ignore
|
|
39
39
|
import type { JsonResultVoid } from '../models';
|
|
40
40
|
// @ts-ignore
|
|
41
|
+
import type { WorkOrderPlanHolidaysEnum } from '../models';
|
|
42
|
+
// @ts-ignore
|
|
41
43
|
import type { WorkOrderPlanRepeatsEnum } from '../models';
|
|
42
44
|
/**
|
|
43
45
|
* InspectionStandardApi - axios parameter creator
|
|
@@ -438,10 +440,11 @@ export const InspectionStandardApiAxiosParamCreator = function (configuration?:
|
|
|
438
440
|
* @param {number} [equipmentSystemId] 设备系统ID
|
|
439
441
|
* @param {InspectionStandardTypeEnum} [type] 巡检标准类型
|
|
440
442
|
* @param {number} [eachDays] 天数
|
|
443
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
441
444
|
* @param {*} [options] Override http request option.
|
|
442
445
|
* @throws {RequiredError}
|
|
443
446
|
*/
|
|
444
|
-
listInspectionStandard: async (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, type?: InspectionStandardTypeEnum, eachDays?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
447
|
+
listInspectionStandard: async (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, type?: InspectionStandardTypeEnum, eachDays?: number, isSkipHolidays?: WorkOrderPlanHolidaysEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
445
448
|
// verify required parameter 'parkId' is not null or undefined
|
|
446
449
|
assertParamExists('listInspectionStandard', 'parkId', parkId)
|
|
447
450
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -500,6 +503,10 @@ export const InspectionStandardApiAxiosParamCreator = function (configuration?:
|
|
|
500
503
|
localVarQueryParameter['eachDays'] = eachDays;
|
|
501
504
|
}
|
|
502
505
|
|
|
506
|
+
if (isSkipHolidays !== undefined) {
|
|
507
|
+
localVarQueryParameter['isSkipHolidays'] = isSkipHolidays;
|
|
508
|
+
}
|
|
509
|
+
|
|
503
510
|
|
|
504
511
|
|
|
505
512
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -828,11 +835,12 @@ export const InspectionStandardApiFp = function(configuration?: Configuration) {
|
|
|
828
835
|
* @param {number} [equipmentSystemId] 设备系统ID
|
|
829
836
|
* @param {InspectionStandardTypeEnum} [type] 巡检标准类型
|
|
830
837
|
* @param {number} [eachDays] 天数
|
|
838
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
831
839
|
* @param {*} [options] Override http request option.
|
|
832
840
|
* @throws {RequiredError}
|
|
833
841
|
*/
|
|
834
|
-
async listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, type?: InspectionStandardTypeEnum, eachDays?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>> {
|
|
835
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, options);
|
|
842
|
+
async listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, type?: InspectionStandardTypeEnum, eachDays?: number, isSkipHolidays?: WorkOrderPlanHolidaysEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>> {
|
|
843
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, isSkipHolidays, options);
|
|
836
844
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
837
845
|
const localVarOperationServerBasePath = operationServerMap['InspectionStandardApi.listInspectionStandard']?.[localVarOperationServerIndex]?.url;
|
|
838
846
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -996,7 +1004,7 @@ export const InspectionStandardApiFactory = function (configuration?: Configurat
|
|
|
996
1004
|
* @throws {RequiredError}
|
|
997
1005
|
*/
|
|
998
1006
|
listInspectionStandard(requestParameters: InspectionStandardApiListInspectionStandardRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoInspectionStandardDTO> {
|
|
999
|
-
return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, requestParameters.type, requestParameters.eachDays, options).then((request) => request(axios, basePath));
|
|
1007
|
+
return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, requestParameters.type, requestParameters.eachDays, requestParameters.isSkipHolidays, options).then((request) => request(axios, basePath));
|
|
1000
1008
|
},
|
|
1001
1009
|
/**
|
|
1002
1010
|
*
|
|
@@ -1242,6 +1250,13 @@ export interface InspectionStandardApiListInspectionStandardRequest {
|
|
|
1242
1250
|
* @memberof InspectionStandardApiListInspectionStandard
|
|
1243
1251
|
*/
|
|
1244
1252
|
readonly eachDays?: number
|
|
1253
|
+
|
|
1254
|
+
/**
|
|
1255
|
+
* 节假日调整
|
|
1256
|
+
* @type {WorkOrderPlanHolidaysEnum}
|
|
1257
|
+
* @memberof InspectionStandardApiListInspectionStandard
|
|
1258
|
+
*/
|
|
1259
|
+
readonly isSkipHolidays?: WorkOrderPlanHolidaysEnum
|
|
1245
1260
|
}
|
|
1246
1261
|
|
|
1247
1262
|
/**
|
|
@@ -1435,7 +1450,7 @@ export class InspectionStandardApi extends BaseAPI {
|
|
|
1435
1450
|
* @memberof InspectionStandardApi
|
|
1436
1451
|
*/
|
|
1437
1452
|
public listInspectionStandard(requestParameters: InspectionStandardApiListInspectionStandardRequest, options?: RawAxiosRequestConfig) {
|
|
1438
|
-
return InspectionStandardApiFp(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, requestParameters.type, requestParameters.eachDays, options).then((request) => request(this.axios, this.basePath));
|
|
1453
|
+
return InspectionStandardApiFp(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, requestParameters.type, requestParameters.eachDays, requestParameters.isSkipHolidays, options).then((request) => request(this.axios, this.basePath));
|
|
1439
1454
|
}
|
|
1440
1455
|
|
|
1441
1456
|
/**
|
|
@@ -38,6 +38,8 @@ import type { MaintenanceStandardAddOrUpdateVo } from '../models';
|
|
|
38
38
|
// @ts-ignore
|
|
39
39
|
import type { StandardDeleteVo } from '../models';
|
|
40
40
|
// @ts-ignore
|
|
41
|
+
import type { WorkOrderPlanHolidaysEnum } from '../models';
|
|
42
|
+
// @ts-ignore
|
|
41
43
|
import type { WorkOrderPlanRepeatsEnum } from '../models';
|
|
42
44
|
/**
|
|
43
45
|
* MaintenanceStandardApi - axios parameter creator
|
|
@@ -210,10 +212,12 @@ export const MaintenanceStandardApiAxiosParamCreator = function (configuration?:
|
|
|
210
212
|
* @param {string} [searchValue] 关键搜索值
|
|
211
213
|
* @param {number} [equipmentSystemId] 维保分类
|
|
212
214
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
215
|
+
* @param {number} [eachDays] 天数
|
|
216
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
213
217
|
* @param {*} [options] Override http request option.
|
|
214
218
|
* @throws {RequiredError}
|
|
215
219
|
*/
|
|
216
|
-
listMaintenanceStandard: async (parkId: number, pageSize: number, page: number, searchValue?: string, equipmentSystemId?: number, repeats?: WorkOrderPlanRepeatsEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
220
|
+
listMaintenanceStandard: async (parkId: number, pageSize: number, page: number, searchValue?: string, equipmentSystemId?: number, repeats?: WorkOrderPlanRepeatsEnum, eachDays?: number, isSkipHolidays?: WorkOrderPlanHolidaysEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
217
221
|
// verify required parameter 'parkId' is not null or undefined
|
|
218
222
|
assertParamExists('listMaintenanceStandard', 'parkId', parkId)
|
|
219
223
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -260,6 +264,14 @@ export const MaintenanceStandardApiAxiosParamCreator = function (configuration?:
|
|
|
260
264
|
localVarQueryParameter['page'] = page;
|
|
261
265
|
}
|
|
262
266
|
|
|
267
|
+
if (eachDays !== undefined) {
|
|
268
|
+
localVarQueryParameter['eachDays'] = eachDays;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
if (isSkipHolidays !== undefined) {
|
|
272
|
+
localVarQueryParameter['isSkipHolidays'] = isSkipHolidays;
|
|
273
|
+
}
|
|
274
|
+
|
|
263
275
|
|
|
264
276
|
|
|
265
277
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -683,11 +695,13 @@ export const MaintenanceStandardApiFp = function(configuration?: Configuration)
|
|
|
683
695
|
* @param {string} [searchValue] 关键搜索值
|
|
684
696
|
* @param {number} [equipmentSystemId] 维保分类
|
|
685
697
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
698
|
+
* @param {number} [eachDays] 天数
|
|
699
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
686
700
|
* @param {*} [options] Override http request option.
|
|
687
701
|
* @throws {RequiredError}
|
|
688
702
|
*/
|
|
689
|
-
async listMaintenanceStandard(parkId: number, pageSize: number, page: number, searchValue?: string, equipmentSystemId?: number, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoMaintenanceStandardDTO>> {
|
|
690
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listMaintenanceStandard(parkId, pageSize, page, searchValue, equipmentSystemId, repeats, options);
|
|
703
|
+
async listMaintenanceStandard(parkId: number, pageSize: number, page: number, searchValue?: string, equipmentSystemId?: number, repeats?: WorkOrderPlanRepeatsEnum, eachDays?: number, isSkipHolidays?: WorkOrderPlanHolidaysEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoMaintenanceStandardDTO>> {
|
|
704
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listMaintenanceStandard(parkId, pageSize, page, searchValue, equipmentSystemId, repeats, eachDays, isSkipHolidays, options);
|
|
691
705
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
692
706
|
const localVarOperationServerBasePath = operationServerMap['MaintenanceStandardApi.listMaintenanceStandard']?.[localVarOperationServerIndex]?.url;
|
|
693
707
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -857,7 +871,7 @@ export const MaintenanceStandardApiFactory = function (configuration?: Configura
|
|
|
857
871
|
* @throws {RequiredError}
|
|
858
872
|
*/
|
|
859
873
|
listMaintenanceStandard(requestParameters: MaintenanceStandardApiListMaintenanceStandardRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoMaintenanceStandardDTO> {
|
|
860
|
-
return localVarFp.listMaintenanceStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.equipmentSystemId, requestParameters.repeats, options).then((request) => request(axios, basePath));
|
|
874
|
+
return localVarFp.listMaintenanceStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.equipmentSystemId, requestParameters.repeats, requestParameters.eachDays, requestParameters.isSkipHolidays, options).then((request) => request(axios, basePath));
|
|
861
875
|
},
|
|
862
876
|
/**
|
|
863
877
|
*
|
|
@@ -1042,6 +1056,20 @@ export interface MaintenanceStandardApiListMaintenanceStandardRequest {
|
|
|
1042
1056
|
* @memberof MaintenanceStandardApiListMaintenanceStandard
|
|
1043
1057
|
*/
|
|
1044
1058
|
readonly repeats?: WorkOrderPlanRepeatsEnum
|
|
1059
|
+
|
|
1060
|
+
/**
|
|
1061
|
+
* 天数
|
|
1062
|
+
* @type {number}
|
|
1063
|
+
* @memberof MaintenanceStandardApiListMaintenanceStandard
|
|
1064
|
+
*/
|
|
1065
|
+
readonly eachDays?: number
|
|
1066
|
+
|
|
1067
|
+
/**
|
|
1068
|
+
* 节假日调整
|
|
1069
|
+
* @type {WorkOrderPlanHolidaysEnum}
|
|
1070
|
+
* @memberof MaintenanceStandardApiListMaintenanceStandard
|
|
1071
|
+
*/
|
|
1072
|
+
readonly isSkipHolidays?: WorkOrderPlanHolidaysEnum
|
|
1045
1073
|
}
|
|
1046
1074
|
|
|
1047
1075
|
/**
|
|
@@ -1220,7 +1248,7 @@ export class MaintenanceStandardApi extends BaseAPI {
|
|
|
1220
1248
|
* @memberof MaintenanceStandardApi
|
|
1221
1249
|
*/
|
|
1222
1250
|
public listMaintenanceStandard(requestParameters: MaintenanceStandardApiListMaintenanceStandardRequest, options?: RawAxiosRequestConfig) {
|
|
1223
|
-
return MaintenanceStandardApiFp(this.configuration).listMaintenanceStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.equipmentSystemId, requestParameters.repeats, options).then((request) => request(this.axios, this.basePath));
|
|
1251
|
+
return MaintenanceStandardApiFp(this.configuration).listMaintenanceStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.equipmentSystemId, requestParameters.repeats, requestParameters.eachDays, requestParameters.isSkipHolidays, options).then((request) => request(this.axios, this.basePath));
|
|
1224
1252
|
}
|
|
1225
1253
|
|
|
1226
1254
|
/**
|
|
@@ -20,6 +20,7 @@ import type { JsonResultInspectionStandardEntity } from '../models';
|
|
|
20
20
|
import type { JsonResultListInspectionStandardEntity } from '../models';
|
|
21
21
|
import type { JsonResultPageDtoInspectionStandardDTO } from '../models';
|
|
22
22
|
import type { JsonResultVoid } from '../models';
|
|
23
|
+
import type { WorkOrderPlanHolidaysEnum } from '../models';
|
|
23
24
|
import type { WorkOrderPlanRepeatsEnum } from '../models';
|
|
24
25
|
/**
|
|
25
26
|
* InspectionStandardApi - axios parameter creator
|
|
@@ -114,10 +115,11 @@ export declare const InspectionStandardApiAxiosParamCreator: (configuration?: Co
|
|
|
114
115
|
* @param {number} [equipmentSystemId] 设备系统ID
|
|
115
116
|
* @param {InspectionStandardTypeEnum} [type] 巡检标准类型
|
|
116
117
|
* @param {number} [eachDays] 天数
|
|
118
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
117
119
|
* @param {*} [options] Override http request option.
|
|
118
120
|
* @throws {RequiredError}
|
|
119
121
|
*/
|
|
120
|
-
listInspectionStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, type?: InspectionStandardTypeEnum, eachDays?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
122
|
+
listInspectionStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, type?: InspectionStandardTypeEnum, eachDays?: number, isSkipHolidays?: WorkOrderPlanHolidaysEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
121
123
|
/**
|
|
122
124
|
*
|
|
123
125
|
* @summary 根据设备id查询维保标准
|
|
@@ -246,10 +248,11 @@ export declare const InspectionStandardApiFp: (configuration?: Configuration) =>
|
|
|
246
248
|
* @param {number} [equipmentSystemId] 设备系统ID
|
|
247
249
|
* @param {InspectionStandardTypeEnum} [type] 巡检标准类型
|
|
248
250
|
* @param {number} [eachDays] 天数
|
|
251
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
249
252
|
* @param {*} [options] Override http request option.
|
|
250
253
|
* @throws {RequiredError}
|
|
251
254
|
*/
|
|
252
|
-
listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, type?: InspectionStandardTypeEnum, eachDays?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>>;
|
|
255
|
+
listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, type?: InspectionStandardTypeEnum, eachDays?: number, isSkipHolidays?: WorkOrderPlanHolidaysEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>>;
|
|
253
256
|
/**
|
|
254
257
|
*
|
|
255
258
|
* @summary 根据设备id查询维保标准
|
|
@@ -580,6 +583,12 @@ export interface InspectionStandardApiListInspectionStandardRequest {
|
|
|
580
583
|
* @memberof InspectionStandardApiListInspectionStandard
|
|
581
584
|
*/
|
|
582
585
|
readonly eachDays?: number;
|
|
586
|
+
/**
|
|
587
|
+
* 节假日调整
|
|
588
|
+
* @type {WorkOrderPlanHolidaysEnum}
|
|
589
|
+
* @memberof InspectionStandardApiListInspectionStandard
|
|
590
|
+
*/
|
|
591
|
+
readonly isSkipHolidays?: WorkOrderPlanHolidaysEnum;
|
|
583
592
|
}
|
|
584
593
|
/**
|
|
585
594
|
* Request parameters for listInspectionStandardByEquipmentId operation in InspectionStandardApi.
|
|
@@ -362,10 +362,11 @@ const InspectionStandardApiAxiosParamCreator = function (configuration) {
|
|
|
362
362
|
* @param {number} [equipmentSystemId] 设备系统ID
|
|
363
363
|
* @param {InspectionStandardTypeEnum} [type] 巡检标准类型
|
|
364
364
|
* @param {number} [eachDays] 天数
|
|
365
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
365
366
|
* @param {*} [options] Override http request option.
|
|
366
367
|
* @throws {RequiredError}
|
|
367
368
|
*/
|
|
368
|
-
listInspectionStandard: (parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, equipmentSystemId_1, type_1, eachDays_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, equipmentSystemId_1, type_1, eachDays_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, options = {}) {
|
|
369
|
+
listInspectionStandard: (parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, equipmentSystemId_1, type_1, eachDays_1, isSkipHolidays_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, equipmentSystemId_1, type_1, eachDays_1, isSkipHolidays_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, isSkipHolidays, options = {}) {
|
|
369
370
|
// verify required parameter 'parkId' is not null or undefined
|
|
370
371
|
(0, common_1.assertParamExists)('listInspectionStandard', 'parkId', parkId);
|
|
371
372
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -412,6 +413,9 @@ const InspectionStandardApiAxiosParamCreator = function (configuration) {
|
|
|
412
413
|
if (eachDays !== undefined) {
|
|
413
414
|
localVarQueryParameter['eachDays'] = eachDays;
|
|
414
415
|
}
|
|
416
|
+
if (isSkipHolidays !== undefined) {
|
|
417
|
+
localVarQueryParameter['isSkipHolidays'] = isSkipHolidays;
|
|
418
|
+
}
|
|
415
419
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
416
420
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
417
421
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -735,13 +739,14 @@ const InspectionStandardApiFp = function (configuration) {
|
|
|
735
739
|
* @param {number} [equipmentSystemId] 设备系统ID
|
|
736
740
|
* @param {InspectionStandardTypeEnum} [type] 巡检标准类型
|
|
737
741
|
* @param {number} [eachDays] 天数
|
|
742
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
738
743
|
* @param {*} [options] Override http request option.
|
|
739
744
|
* @throws {RequiredError}
|
|
740
745
|
*/
|
|
741
|
-
listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, options) {
|
|
746
|
+
listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, isSkipHolidays, options) {
|
|
742
747
|
return __awaiter(this, void 0, void 0, function* () {
|
|
743
748
|
var _a, _b, _c;
|
|
744
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, options);
|
|
749
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, isSkipHolidays, options);
|
|
745
750
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
746
751
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['InspectionStandardApi.listInspectionStandard']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
747
752
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -918,7 +923,7 @@ const InspectionStandardApiFactory = function (configuration, basePath, axios) {
|
|
|
918
923
|
* @throws {RequiredError}
|
|
919
924
|
*/
|
|
920
925
|
listInspectionStandard(requestParameters, options) {
|
|
921
|
-
return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, requestParameters.type, requestParameters.eachDays, options).then((request) => request(axios, basePath));
|
|
926
|
+
return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, requestParameters.type, requestParameters.eachDays, requestParameters.isSkipHolidays, options).then((request) => request(axios, basePath));
|
|
922
927
|
},
|
|
923
928
|
/**
|
|
924
929
|
*
|
|
@@ -1075,7 +1080,7 @@ class InspectionStandardApi extends base_1.BaseAPI {
|
|
|
1075
1080
|
* @memberof InspectionStandardApi
|
|
1076
1081
|
*/
|
|
1077
1082
|
listInspectionStandard(requestParameters, options) {
|
|
1078
|
-
return (0, exports.InspectionStandardApiFp)(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, requestParameters.type, requestParameters.eachDays, options).then((request) => request(this.axios, this.basePath));
|
|
1083
|
+
return (0, exports.InspectionStandardApiFp)(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, requestParameters.type, requestParameters.eachDays, requestParameters.isSkipHolidays, options).then((request) => request(this.axios, this.basePath));
|
|
1079
1084
|
}
|
|
1080
1085
|
/**
|
|
1081
1086
|
*
|
|
@@ -20,6 +20,7 @@ import type { JsonResultPageDtoMaintenanceStandardDTO } from '../models';
|
|
|
20
20
|
import type { JsonResultVoid } from '../models';
|
|
21
21
|
import type { MaintenanceStandardAddOrUpdateVo } from '../models';
|
|
22
22
|
import type { StandardDeleteVo } from '../models';
|
|
23
|
+
import type { WorkOrderPlanHolidaysEnum } from '../models';
|
|
23
24
|
import type { WorkOrderPlanRepeatsEnum } from '../models';
|
|
24
25
|
/**
|
|
25
26
|
* MaintenanceStandardApi - axios parameter creator
|
|
@@ -67,10 +68,12 @@ export declare const MaintenanceStandardApiAxiosParamCreator: (configuration?: C
|
|
|
67
68
|
* @param {string} [searchValue] 关键搜索值
|
|
68
69
|
* @param {number} [equipmentSystemId] 维保分类
|
|
69
70
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
71
|
+
* @param {number} [eachDays] 天数
|
|
72
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
70
73
|
* @param {*} [options] Override http request option.
|
|
71
74
|
* @throws {RequiredError}
|
|
72
75
|
*/
|
|
73
|
-
listMaintenanceStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, equipmentSystemId?: number, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
76
|
+
listMaintenanceStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, equipmentSystemId?: number, repeats?: WorkOrderPlanRepeatsEnum, eachDays?: number, isSkipHolidays?: WorkOrderPlanHolidaysEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74
77
|
/**
|
|
75
78
|
*
|
|
76
79
|
* @summary 根据设备id查询维保标准
|
|
@@ -185,10 +188,12 @@ export declare const MaintenanceStandardApiFp: (configuration?: Configuration) =
|
|
|
185
188
|
* @param {string} [searchValue] 关键搜索值
|
|
186
189
|
* @param {number} [equipmentSystemId] 维保分类
|
|
187
190
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
191
|
+
* @param {number} [eachDays] 天数
|
|
192
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
188
193
|
* @param {*} [options] Override http request option.
|
|
189
194
|
* @throws {RequiredError}
|
|
190
195
|
*/
|
|
191
|
-
listMaintenanceStandard(parkId: number, pageSize: number, page: number, searchValue?: string, equipmentSystemId?: number, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoMaintenanceStandardDTO>>;
|
|
196
|
+
listMaintenanceStandard(parkId: number, pageSize: number, page: number, searchValue?: string, equipmentSystemId?: number, repeats?: WorkOrderPlanRepeatsEnum, eachDays?: number, isSkipHolidays?: WorkOrderPlanHolidaysEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoMaintenanceStandardDTO>>;
|
|
192
197
|
/**
|
|
193
198
|
*
|
|
194
199
|
* @summary 根据设备id查询维保标准
|
|
@@ -458,6 +463,18 @@ export interface MaintenanceStandardApiListMaintenanceStandardRequest {
|
|
|
458
463
|
* @memberof MaintenanceStandardApiListMaintenanceStandard
|
|
459
464
|
*/
|
|
460
465
|
readonly repeats?: WorkOrderPlanRepeatsEnum;
|
|
466
|
+
/**
|
|
467
|
+
* 天数
|
|
468
|
+
* @type {number}
|
|
469
|
+
* @memberof MaintenanceStandardApiListMaintenanceStandard
|
|
470
|
+
*/
|
|
471
|
+
readonly eachDays?: number;
|
|
472
|
+
/**
|
|
473
|
+
* 节假日调整
|
|
474
|
+
* @type {WorkOrderPlanHolidaysEnum}
|
|
475
|
+
* @memberof MaintenanceStandardApiListMaintenanceStandard
|
|
476
|
+
*/
|
|
477
|
+
readonly isSkipHolidays?: WorkOrderPlanHolidaysEnum;
|
|
461
478
|
}
|
|
462
479
|
/**
|
|
463
480
|
* Request parameters for listMaintenanceStandardByEquipmentId operation in MaintenanceStandardApi.
|
|
@@ -174,10 +174,12 @@ const MaintenanceStandardApiAxiosParamCreator = function (configuration) {
|
|
|
174
174
|
* @param {string} [searchValue] 关键搜索值
|
|
175
175
|
* @param {number} [equipmentSystemId] 维保分类
|
|
176
176
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
177
|
+
* @param {number} [eachDays] 天数
|
|
178
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
177
179
|
* @param {*} [options] Override http request option.
|
|
178
180
|
* @throws {RequiredError}
|
|
179
181
|
*/
|
|
180
|
-
listMaintenanceStandard: (parkId_1, pageSize_1, page_1, searchValue_1, equipmentSystemId_1, repeats_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, equipmentSystemId_1, repeats_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, equipmentSystemId, repeats, options = {}) {
|
|
182
|
+
listMaintenanceStandard: (parkId_1, pageSize_1, page_1, searchValue_1, equipmentSystemId_1, repeats_1, eachDays_1, isSkipHolidays_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, equipmentSystemId_1, repeats_1, eachDays_1, isSkipHolidays_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, equipmentSystemId, repeats, eachDays, isSkipHolidays, options = {}) {
|
|
181
183
|
// verify required parameter 'parkId' is not null or undefined
|
|
182
184
|
(0, common_1.assertParamExists)('listMaintenanceStandard', 'parkId', parkId);
|
|
183
185
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -215,6 +217,12 @@ const MaintenanceStandardApiAxiosParamCreator = function (configuration) {
|
|
|
215
217
|
if (page !== undefined) {
|
|
216
218
|
localVarQueryParameter['page'] = page;
|
|
217
219
|
}
|
|
220
|
+
if (eachDays !== undefined) {
|
|
221
|
+
localVarQueryParameter['eachDays'] = eachDays;
|
|
222
|
+
}
|
|
223
|
+
if (isSkipHolidays !== undefined) {
|
|
224
|
+
localVarQueryParameter['isSkipHolidays'] = isSkipHolidays;
|
|
225
|
+
}
|
|
218
226
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
219
227
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
220
228
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -588,13 +596,15 @@ const MaintenanceStandardApiFp = function (configuration) {
|
|
|
588
596
|
* @param {string} [searchValue] 关键搜索值
|
|
589
597
|
* @param {number} [equipmentSystemId] 维保分类
|
|
590
598
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
599
|
+
* @param {number} [eachDays] 天数
|
|
600
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
591
601
|
* @param {*} [options] Override http request option.
|
|
592
602
|
* @throws {RequiredError}
|
|
593
603
|
*/
|
|
594
|
-
listMaintenanceStandard(parkId, pageSize, page, searchValue, equipmentSystemId, repeats, options) {
|
|
604
|
+
listMaintenanceStandard(parkId, pageSize, page, searchValue, equipmentSystemId, repeats, eachDays, isSkipHolidays, options) {
|
|
595
605
|
return __awaiter(this, void 0, void 0, function* () {
|
|
596
606
|
var _a, _b, _c;
|
|
597
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listMaintenanceStandard(parkId, pageSize, page, searchValue, equipmentSystemId, repeats, options);
|
|
607
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listMaintenanceStandard(parkId, pageSize, page, searchValue, equipmentSystemId, repeats, eachDays, isSkipHolidays, options);
|
|
598
608
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
599
609
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['MaintenanceStandardApi.listMaintenanceStandard']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
600
610
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -789,7 +799,7 @@ const MaintenanceStandardApiFactory = function (configuration, basePath, axios)
|
|
|
789
799
|
* @throws {RequiredError}
|
|
790
800
|
*/
|
|
791
801
|
listMaintenanceStandard(requestParameters, options) {
|
|
792
|
-
return localVarFp.listMaintenanceStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.equipmentSystemId, requestParameters.repeats, options).then((request) => request(axios, basePath));
|
|
802
|
+
return localVarFp.listMaintenanceStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.equipmentSystemId, requestParameters.repeats, requestParameters.eachDays, requestParameters.isSkipHolidays, options).then((request) => request(axios, basePath));
|
|
793
803
|
},
|
|
794
804
|
/**
|
|
795
805
|
*
|
|
@@ -931,7 +941,7 @@ class MaintenanceStandardApi extends base_1.BaseAPI {
|
|
|
931
941
|
* @memberof MaintenanceStandardApi
|
|
932
942
|
*/
|
|
933
943
|
listMaintenanceStandard(requestParameters, options) {
|
|
934
|
-
return (0, exports.MaintenanceStandardApiFp)(this.configuration).listMaintenanceStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.equipmentSystemId, requestParameters.repeats, options).then((request) => request(this.axios, this.basePath));
|
|
944
|
+
return (0, exports.MaintenanceStandardApiFp)(this.configuration).listMaintenanceStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.equipmentSystemId, requestParameters.repeats, requestParameters.eachDays, requestParameters.isSkipHolidays, options).then((request) => request(this.axios, this.basePath));
|
|
935
945
|
}
|
|
936
946
|
/**
|
|
937
947
|
*
|
|
@@ -20,6 +20,7 @@ import type { JsonResultInspectionStandardEntity } from '../models';
|
|
|
20
20
|
import type { JsonResultListInspectionStandardEntity } from '../models';
|
|
21
21
|
import type { JsonResultPageDtoInspectionStandardDTO } from '../models';
|
|
22
22
|
import type { JsonResultVoid } from '../models';
|
|
23
|
+
import type { WorkOrderPlanHolidaysEnum } from '../models';
|
|
23
24
|
import type { WorkOrderPlanRepeatsEnum } from '../models';
|
|
24
25
|
/**
|
|
25
26
|
* InspectionStandardApi - axios parameter creator
|
|
@@ -114,10 +115,11 @@ export declare const InspectionStandardApiAxiosParamCreator: (configuration?: Co
|
|
|
114
115
|
* @param {number} [equipmentSystemId] 设备系统ID
|
|
115
116
|
* @param {InspectionStandardTypeEnum} [type] 巡检标准类型
|
|
116
117
|
* @param {number} [eachDays] 天数
|
|
118
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
117
119
|
* @param {*} [options] Override http request option.
|
|
118
120
|
* @throws {RequiredError}
|
|
119
121
|
*/
|
|
120
|
-
listInspectionStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, type?: InspectionStandardTypeEnum, eachDays?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
122
|
+
listInspectionStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, type?: InspectionStandardTypeEnum, eachDays?: number, isSkipHolidays?: WorkOrderPlanHolidaysEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
121
123
|
/**
|
|
122
124
|
*
|
|
123
125
|
* @summary 根据设备id查询维保标准
|
|
@@ -246,10 +248,11 @@ export declare const InspectionStandardApiFp: (configuration?: Configuration) =>
|
|
|
246
248
|
* @param {number} [equipmentSystemId] 设备系统ID
|
|
247
249
|
* @param {InspectionStandardTypeEnum} [type] 巡检标准类型
|
|
248
250
|
* @param {number} [eachDays] 天数
|
|
251
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
249
252
|
* @param {*} [options] Override http request option.
|
|
250
253
|
* @throws {RequiredError}
|
|
251
254
|
*/
|
|
252
|
-
listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, type?: InspectionStandardTypeEnum, eachDays?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>>;
|
|
255
|
+
listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, type?: InspectionStandardTypeEnum, eachDays?: number, isSkipHolidays?: WorkOrderPlanHolidaysEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>>;
|
|
253
256
|
/**
|
|
254
257
|
*
|
|
255
258
|
* @summary 根据设备id查询维保标准
|
|
@@ -580,6 +583,12 @@ export interface InspectionStandardApiListInspectionStandardRequest {
|
|
|
580
583
|
* @memberof InspectionStandardApiListInspectionStandard
|
|
581
584
|
*/
|
|
582
585
|
readonly eachDays?: number;
|
|
586
|
+
/**
|
|
587
|
+
* 节假日调整
|
|
588
|
+
* @type {WorkOrderPlanHolidaysEnum}
|
|
589
|
+
* @memberof InspectionStandardApiListInspectionStandard
|
|
590
|
+
*/
|
|
591
|
+
readonly isSkipHolidays?: WorkOrderPlanHolidaysEnum;
|
|
583
592
|
}
|
|
584
593
|
/**
|
|
585
594
|
* Request parameters for listInspectionStandardByEquipmentId operation in InspectionStandardApi.
|
|
@@ -359,10 +359,11 @@ export const InspectionStandardApiAxiosParamCreator = function (configuration) {
|
|
|
359
359
|
* @param {number} [equipmentSystemId] 设备系统ID
|
|
360
360
|
* @param {InspectionStandardTypeEnum} [type] 巡检标准类型
|
|
361
361
|
* @param {number} [eachDays] 天数
|
|
362
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
362
363
|
* @param {*} [options] Override http request option.
|
|
363
364
|
* @throws {RequiredError}
|
|
364
365
|
*/
|
|
365
|
-
listInspectionStandard: (parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, equipmentSystemId_1, type_1, eachDays_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, equipmentSystemId_1, type_1, eachDays_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, options = {}) {
|
|
366
|
+
listInspectionStandard: (parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, equipmentSystemId_1, type_1, eachDays_1, isSkipHolidays_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, equipmentSystemId_1, type_1, eachDays_1, isSkipHolidays_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, isSkipHolidays, options = {}) {
|
|
366
367
|
// verify required parameter 'parkId' is not null or undefined
|
|
367
368
|
assertParamExists('listInspectionStandard', 'parkId', parkId);
|
|
368
369
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -409,6 +410,9 @@ export const InspectionStandardApiAxiosParamCreator = function (configuration) {
|
|
|
409
410
|
if (eachDays !== undefined) {
|
|
410
411
|
localVarQueryParameter['eachDays'] = eachDays;
|
|
411
412
|
}
|
|
413
|
+
if (isSkipHolidays !== undefined) {
|
|
414
|
+
localVarQueryParameter['isSkipHolidays'] = isSkipHolidays;
|
|
415
|
+
}
|
|
412
416
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
413
417
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
414
418
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -731,13 +735,14 @@ export const InspectionStandardApiFp = function (configuration) {
|
|
|
731
735
|
* @param {number} [equipmentSystemId] 设备系统ID
|
|
732
736
|
* @param {InspectionStandardTypeEnum} [type] 巡检标准类型
|
|
733
737
|
* @param {number} [eachDays] 天数
|
|
738
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
734
739
|
* @param {*} [options] Override http request option.
|
|
735
740
|
* @throws {RequiredError}
|
|
736
741
|
*/
|
|
737
|
-
listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, options) {
|
|
742
|
+
listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, isSkipHolidays, options) {
|
|
738
743
|
return __awaiter(this, void 0, void 0, function* () {
|
|
739
744
|
var _a, _b, _c;
|
|
740
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, options);
|
|
745
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, type, eachDays, isSkipHolidays, options);
|
|
741
746
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
742
747
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['InspectionStandardApi.listInspectionStandard']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
743
748
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -913,7 +918,7 @@ export const InspectionStandardApiFactory = function (configuration, basePath, a
|
|
|
913
918
|
* @throws {RequiredError}
|
|
914
919
|
*/
|
|
915
920
|
listInspectionStandard(requestParameters, options) {
|
|
916
|
-
return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, requestParameters.type, requestParameters.eachDays, options).then((request) => request(axios, basePath));
|
|
921
|
+
return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, requestParameters.type, requestParameters.eachDays, requestParameters.isSkipHolidays, options).then((request) => request(axios, basePath));
|
|
917
922
|
},
|
|
918
923
|
/**
|
|
919
924
|
*
|
|
@@ -1069,7 +1074,7 @@ export class InspectionStandardApi extends BaseAPI {
|
|
|
1069
1074
|
* @memberof InspectionStandardApi
|
|
1070
1075
|
*/
|
|
1071
1076
|
listInspectionStandard(requestParameters, options) {
|
|
1072
|
-
return InspectionStandardApiFp(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, requestParameters.type, requestParameters.eachDays, options).then((request) => request(this.axios, this.basePath));
|
|
1077
|
+
return InspectionStandardApiFp(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, requestParameters.type, requestParameters.eachDays, requestParameters.isSkipHolidays, options).then((request) => request(this.axios, this.basePath));
|
|
1073
1078
|
}
|
|
1074
1079
|
/**
|
|
1075
1080
|
*
|
|
@@ -20,6 +20,7 @@ import type { JsonResultPageDtoMaintenanceStandardDTO } from '../models';
|
|
|
20
20
|
import type { JsonResultVoid } from '../models';
|
|
21
21
|
import type { MaintenanceStandardAddOrUpdateVo } from '../models';
|
|
22
22
|
import type { StandardDeleteVo } from '../models';
|
|
23
|
+
import type { WorkOrderPlanHolidaysEnum } from '../models';
|
|
23
24
|
import type { WorkOrderPlanRepeatsEnum } from '../models';
|
|
24
25
|
/**
|
|
25
26
|
* MaintenanceStandardApi - axios parameter creator
|
|
@@ -67,10 +68,12 @@ export declare const MaintenanceStandardApiAxiosParamCreator: (configuration?: C
|
|
|
67
68
|
* @param {string} [searchValue] 关键搜索值
|
|
68
69
|
* @param {number} [equipmentSystemId] 维保分类
|
|
69
70
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
71
|
+
* @param {number} [eachDays] 天数
|
|
72
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
70
73
|
* @param {*} [options] Override http request option.
|
|
71
74
|
* @throws {RequiredError}
|
|
72
75
|
*/
|
|
73
|
-
listMaintenanceStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, equipmentSystemId?: number, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
76
|
+
listMaintenanceStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, equipmentSystemId?: number, repeats?: WorkOrderPlanRepeatsEnum, eachDays?: number, isSkipHolidays?: WorkOrderPlanHolidaysEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74
77
|
/**
|
|
75
78
|
*
|
|
76
79
|
* @summary 根据设备id查询维保标准
|
|
@@ -185,10 +188,12 @@ export declare const MaintenanceStandardApiFp: (configuration?: Configuration) =
|
|
|
185
188
|
* @param {string} [searchValue] 关键搜索值
|
|
186
189
|
* @param {number} [equipmentSystemId] 维保分类
|
|
187
190
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
191
|
+
* @param {number} [eachDays] 天数
|
|
192
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
188
193
|
* @param {*} [options] Override http request option.
|
|
189
194
|
* @throws {RequiredError}
|
|
190
195
|
*/
|
|
191
|
-
listMaintenanceStandard(parkId: number, pageSize: number, page: number, searchValue?: string, equipmentSystemId?: number, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoMaintenanceStandardDTO>>;
|
|
196
|
+
listMaintenanceStandard(parkId: number, pageSize: number, page: number, searchValue?: string, equipmentSystemId?: number, repeats?: WorkOrderPlanRepeatsEnum, eachDays?: number, isSkipHolidays?: WorkOrderPlanHolidaysEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoMaintenanceStandardDTO>>;
|
|
192
197
|
/**
|
|
193
198
|
*
|
|
194
199
|
* @summary 根据设备id查询维保标准
|
|
@@ -458,6 +463,18 @@ export interface MaintenanceStandardApiListMaintenanceStandardRequest {
|
|
|
458
463
|
* @memberof MaintenanceStandardApiListMaintenanceStandard
|
|
459
464
|
*/
|
|
460
465
|
readonly repeats?: WorkOrderPlanRepeatsEnum;
|
|
466
|
+
/**
|
|
467
|
+
* 天数
|
|
468
|
+
* @type {number}
|
|
469
|
+
* @memberof MaintenanceStandardApiListMaintenanceStandard
|
|
470
|
+
*/
|
|
471
|
+
readonly eachDays?: number;
|
|
472
|
+
/**
|
|
473
|
+
* 节假日调整
|
|
474
|
+
* @type {WorkOrderPlanHolidaysEnum}
|
|
475
|
+
* @memberof MaintenanceStandardApiListMaintenanceStandard
|
|
476
|
+
*/
|
|
477
|
+
readonly isSkipHolidays?: WorkOrderPlanHolidaysEnum;
|
|
461
478
|
}
|
|
462
479
|
/**
|
|
463
480
|
* Request parameters for listMaintenanceStandardByEquipmentId operation in MaintenanceStandardApi.
|
|
@@ -171,10 +171,12 @@ export const MaintenanceStandardApiAxiosParamCreator = function (configuration)
|
|
|
171
171
|
* @param {string} [searchValue] 关键搜索值
|
|
172
172
|
* @param {number} [equipmentSystemId] 维保分类
|
|
173
173
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
174
|
+
* @param {number} [eachDays] 天数
|
|
175
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
174
176
|
* @param {*} [options] Override http request option.
|
|
175
177
|
* @throws {RequiredError}
|
|
176
178
|
*/
|
|
177
|
-
listMaintenanceStandard: (parkId_1, pageSize_1, page_1, searchValue_1, equipmentSystemId_1, repeats_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, equipmentSystemId_1, repeats_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, equipmentSystemId, repeats, options = {}) {
|
|
179
|
+
listMaintenanceStandard: (parkId_1, pageSize_1, page_1, searchValue_1, equipmentSystemId_1, repeats_1, eachDays_1, isSkipHolidays_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, equipmentSystemId_1, repeats_1, eachDays_1, isSkipHolidays_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, equipmentSystemId, repeats, eachDays, isSkipHolidays, options = {}) {
|
|
178
180
|
// verify required parameter 'parkId' is not null or undefined
|
|
179
181
|
assertParamExists('listMaintenanceStandard', 'parkId', parkId);
|
|
180
182
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -212,6 +214,12 @@ export const MaintenanceStandardApiAxiosParamCreator = function (configuration)
|
|
|
212
214
|
if (page !== undefined) {
|
|
213
215
|
localVarQueryParameter['page'] = page;
|
|
214
216
|
}
|
|
217
|
+
if (eachDays !== undefined) {
|
|
218
|
+
localVarQueryParameter['eachDays'] = eachDays;
|
|
219
|
+
}
|
|
220
|
+
if (isSkipHolidays !== undefined) {
|
|
221
|
+
localVarQueryParameter['isSkipHolidays'] = isSkipHolidays;
|
|
222
|
+
}
|
|
215
223
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
216
224
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
217
225
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -584,13 +592,15 @@ export const MaintenanceStandardApiFp = function (configuration) {
|
|
|
584
592
|
* @param {string} [searchValue] 关键搜索值
|
|
585
593
|
* @param {number} [equipmentSystemId] 维保分类
|
|
586
594
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
|
|
595
|
+
* @param {number} [eachDays] 天数
|
|
596
|
+
* @param {WorkOrderPlanHolidaysEnum} [isSkipHolidays] 节假日调整
|
|
587
597
|
* @param {*} [options] Override http request option.
|
|
588
598
|
* @throws {RequiredError}
|
|
589
599
|
*/
|
|
590
|
-
listMaintenanceStandard(parkId, pageSize, page, searchValue, equipmentSystemId, repeats, options) {
|
|
600
|
+
listMaintenanceStandard(parkId, pageSize, page, searchValue, equipmentSystemId, repeats, eachDays, isSkipHolidays, options) {
|
|
591
601
|
return __awaiter(this, void 0, void 0, function* () {
|
|
592
602
|
var _a, _b, _c;
|
|
593
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listMaintenanceStandard(parkId, pageSize, page, searchValue, equipmentSystemId, repeats, options);
|
|
603
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listMaintenanceStandard(parkId, pageSize, page, searchValue, equipmentSystemId, repeats, eachDays, isSkipHolidays, options);
|
|
594
604
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
595
605
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['MaintenanceStandardApi.listMaintenanceStandard']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
596
606
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -784,7 +794,7 @@ export const MaintenanceStandardApiFactory = function (configuration, basePath,
|
|
|
784
794
|
* @throws {RequiredError}
|
|
785
795
|
*/
|
|
786
796
|
listMaintenanceStandard(requestParameters, options) {
|
|
787
|
-
return localVarFp.listMaintenanceStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.equipmentSystemId, requestParameters.repeats, options).then((request) => request(axios, basePath));
|
|
797
|
+
return localVarFp.listMaintenanceStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.equipmentSystemId, requestParameters.repeats, requestParameters.eachDays, requestParameters.isSkipHolidays, options).then((request) => request(axios, basePath));
|
|
788
798
|
},
|
|
789
799
|
/**
|
|
790
800
|
*
|
|
@@ -925,7 +935,7 @@ export class MaintenanceStandardApi extends BaseAPI {
|
|
|
925
935
|
* @memberof MaintenanceStandardApi
|
|
926
936
|
*/
|
|
927
937
|
listMaintenanceStandard(requestParameters, options) {
|
|
928
|
-
return MaintenanceStandardApiFp(this.configuration).listMaintenanceStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.equipmentSystemId, requestParameters.repeats, options).then((request) => request(this.axios, this.basePath));
|
|
938
|
+
return MaintenanceStandardApiFp(this.configuration).listMaintenanceStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.equipmentSystemId, requestParameters.repeats, requestParameters.eachDays, requestParameters.isSkipHolidays, options).then((request) => request(this.axios, this.basePath));
|
|
929
939
|
}
|
|
930
940
|
/**
|
|
931
941
|
*
|
|
@@ -17,12 +17,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
17
17
|
* @interface GetUserWx200Response
|
|
18
18
|
*/
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {object}
|
|
23
|
-
* @memberof GetUserWx200Response
|
|
24
|
-
*/
|
|
25
|
-
'trailerFields'?: object;
|
|
26
20
|
/**
|
|
27
21
|
*
|
|
28
22
|
* @type {number}
|
|
@@ -37,16 +31,16 @@ export interface GetUserWx200Response {
|
|
|
37
31
|
'headerNames'?: Array<string>;
|
|
38
32
|
/**
|
|
39
33
|
*
|
|
40
|
-
* @type {
|
|
34
|
+
* @type {object}
|
|
41
35
|
* @memberof GetUserWx200Response
|
|
42
36
|
*/
|
|
43
|
-
'
|
|
37
|
+
'trailerFields'?: object;
|
|
44
38
|
/**
|
|
45
39
|
*
|
|
46
|
-
* @type {
|
|
40
|
+
* @type {GetUserWx200ResponseLocale}
|
|
47
41
|
* @memberof GetUserWx200Response
|
|
48
42
|
*/
|
|
49
|
-
'
|
|
43
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
50
44
|
/**
|
|
51
45
|
*
|
|
52
46
|
* @type {string}
|
|
@@ -65,6 +59,12 @@ export interface GetUserWx200Response {
|
|
|
65
59
|
* @memberof GetUserWx200Response
|
|
66
60
|
*/
|
|
67
61
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {number}
|
|
65
|
+
* @memberof GetUserWx200Response
|
|
66
|
+
*/
|
|
67
|
+
'bufferSize'?: number;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @type {string}
|
|
@@ -34,12 +34,6 @@ export interface IPageAccessVO {
|
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
35
|
*/
|
|
36
36
|
'records'?: Array<AccessVO>;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {boolean}
|
|
40
|
-
* @memberof IPageAccessVO
|
|
41
|
-
*/
|
|
42
|
-
'searchCount'?: boolean;
|
|
43
37
|
/**
|
|
44
38
|
*
|
|
45
39
|
* @type {number}
|
|
@@ -53,6 +47,12 @@ export interface IPageAccessVO {
|
|
|
53
47
|
* @deprecated
|
|
54
48
|
*/
|
|
55
49
|
'hitCount'?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof IPageAccessVO
|
|
54
|
+
*/
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -17,12 +17,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
17
17
|
* @interface GetUserWx200Response
|
|
18
18
|
*/
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {object}
|
|
23
|
-
* @memberof GetUserWx200Response
|
|
24
|
-
*/
|
|
25
|
-
'trailerFields'?: object;
|
|
26
20
|
/**
|
|
27
21
|
*
|
|
28
22
|
* @type {number}
|
|
@@ -37,16 +31,16 @@ export interface GetUserWx200Response {
|
|
|
37
31
|
'headerNames'?: Array<string>;
|
|
38
32
|
/**
|
|
39
33
|
*
|
|
40
|
-
* @type {
|
|
34
|
+
* @type {object}
|
|
41
35
|
* @memberof GetUserWx200Response
|
|
42
36
|
*/
|
|
43
|
-
'
|
|
37
|
+
'trailerFields'?: object;
|
|
44
38
|
/**
|
|
45
39
|
*
|
|
46
|
-
* @type {
|
|
40
|
+
* @type {GetUserWx200ResponseLocale}
|
|
47
41
|
* @memberof GetUserWx200Response
|
|
48
42
|
*/
|
|
49
|
-
'
|
|
43
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
50
44
|
/**
|
|
51
45
|
*
|
|
52
46
|
* @type {string}
|
|
@@ -65,6 +59,12 @@ export interface GetUserWx200Response {
|
|
|
65
59
|
* @memberof GetUserWx200Response
|
|
66
60
|
*/
|
|
67
61
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {number}
|
|
65
|
+
* @memberof GetUserWx200Response
|
|
66
|
+
*/
|
|
67
|
+
'bufferSize'?: number;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @type {string}
|
|
@@ -34,12 +34,6 @@ export interface IPageAccessVO {
|
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
35
|
*/
|
|
36
36
|
'records'?: Array<AccessVO>;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {boolean}
|
|
40
|
-
* @memberof IPageAccessVO
|
|
41
|
-
*/
|
|
42
|
-
'searchCount'?: boolean;
|
|
43
37
|
/**
|
|
44
38
|
*
|
|
45
39
|
* @type {number}
|
|
@@ -53,6 +47,12 @@ export interface IPageAccessVO {
|
|
|
53
47
|
* @deprecated
|
|
54
48
|
*/
|
|
55
49
|
'hitCount'?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof IPageAccessVO
|
|
54
|
+
*/
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -26,12 +26,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
26
26
|
* @interface GetUserWx200Response
|
|
27
27
|
*/
|
|
28
28
|
export interface GetUserWx200Response {
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {object}
|
|
32
|
-
* @memberof GetUserWx200Response
|
|
33
|
-
*/
|
|
34
|
-
'trailerFields'?: object;
|
|
35
29
|
/**
|
|
36
30
|
*
|
|
37
31
|
* @type {number}
|
|
@@ -46,16 +40,16 @@ export interface GetUserWx200Response {
|
|
|
46
40
|
'headerNames'?: Array<string>;
|
|
47
41
|
/**
|
|
48
42
|
*
|
|
49
|
-
* @type {
|
|
43
|
+
* @type {object}
|
|
50
44
|
* @memberof GetUserWx200Response
|
|
51
45
|
*/
|
|
52
|
-
'
|
|
46
|
+
'trailerFields'?: object;
|
|
53
47
|
/**
|
|
54
48
|
*
|
|
55
|
-
* @type {
|
|
49
|
+
* @type {GetUserWx200ResponseLocale}
|
|
56
50
|
* @memberof GetUserWx200Response
|
|
57
51
|
*/
|
|
58
|
-
'
|
|
52
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
59
53
|
/**
|
|
60
54
|
*
|
|
61
55
|
* @type {string}
|
|
@@ -74,6 +68,12 @@ export interface GetUserWx200Response {
|
|
|
74
68
|
* @memberof GetUserWx200Response
|
|
75
69
|
*/
|
|
76
70
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof GetUserWx200Response
|
|
75
|
+
*/
|
|
76
|
+
'bufferSize'?: number;
|
|
77
77
|
/**
|
|
78
78
|
*
|
|
79
79
|
* @type {string}
|
|
@@ -41,12 +41,6 @@ export interface IPageAccessVO {
|
|
|
41
41
|
* @memberof IPageAccessVO
|
|
42
42
|
*/
|
|
43
43
|
'records'?: Array<AccessVO>;
|
|
44
|
-
/**
|
|
45
|
-
*
|
|
46
|
-
* @type {boolean}
|
|
47
|
-
* @memberof IPageAccessVO
|
|
48
|
-
*/
|
|
49
|
-
'searchCount'?: boolean;
|
|
50
44
|
/**
|
|
51
45
|
*
|
|
52
46
|
* @type {number}
|
|
@@ -60,6 +54,12 @@ export interface IPageAccessVO {
|
|
|
60
54
|
* @deprecated
|
|
61
55
|
*/
|
|
62
56
|
'hitCount'?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {boolean}
|
|
60
|
+
* @memberof IPageAccessVO
|
|
61
|
+
*/
|
|
62
|
+
'searchCount'?: boolean;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|