@gizone/rrs-client 4.2.0-alpha.253 → 4.2.0-alpha.255
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/.openapi-generator/FILES +1 -0
- package/apis/disaster-warning-standard-api.ts +18 -5
- package/apis/work-order-api.ts +3 -2
- package/dist/apis/disaster-warning-standard-api.d.ts +10 -2
- package/dist/apis/disaster-warning-standard-api.js +10 -5
- package/dist/apis/work-order-api.d.ts +2 -1
- package/dist/apis/work-order-api.js +2 -1
- package/dist/esm/apis/disaster-warning-standard-api.d.ts +10 -2
- package/dist/esm/apis/disaster-warning-standard-api.js +10 -5
- package/dist/esm/apis/work-order-api.d.ts +2 -1
- package/dist/esm/apis/work-order-api.js +2 -1
- package/dist/esm/models/get-user-wx200-response.d.ts +10 -10
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/index.js +1 -0
- package/dist/esm/models/ipage-access-vo.d.ts +4 -4
- package/dist/esm/models/period-detail-resp.d.ts +1 -0
- package/dist/esm/models/period-detail-resp.js +2 -1
- package/dist/esm/models/plan-add-vo.d.ts +9 -1
- package/dist/esm/models/plan-add-vo.js +2 -1
- package/dist/esm/models/plan-calendar-list-vo.d.ts +1 -0
- package/dist/esm/models/plan-calendar-list-vo.js +2 -1
- package/dist/esm/models/plan-detail-dto.d.ts +1 -0
- package/dist/esm/models/plan-detail-dto.js +2 -1
- package/dist/esm/models/plan-edit-vo.d.ts +9 -1
- package/dist/esm/models/plan-edit-vo.js +2 -1
- package/dist/esm/models/plan-level-enum.d.ts +22 -0
- package/dist/esm/models/plan-level-enum.js +23 -0
- package/dist/esm/models/plan-search-dto.d.ts +1 -0
- package/dist/esm/models/plan-search-dto.js +2 -1
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/esm/models/work-order-type-subcategory-enum.d.ts +31 -0
- package/dist/esm/models/work-order-type-subcategory-enum.js +32 -1
- package/dist/models/get-user-wx200-response.d.ts +10 -10
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/ipage-access-vo.d.ts +4 -4
- package/dist/models/period-detail-resp.d.ts +1 -0
- package/dist/models/period-detail-resp.js +2 -1
- package/dist/models/plan-add-vo.d.ts +9 -1
- package/dist/models/plan-add-vo.js +2 -1
- package/dist/models/plan-calendar-list-vo.d.ts +1 -0
- package/dist/models/plan-calendar-list-vo.js +2 -1
- package/dist/models/plan-detail-dto.d.ts +1 -0
- package/dist/models/plan-detail-dto.js +2 -1
- package/dist/models/plan-edit-vo.d.ts +9 -1
- package/dist/models/plan-edit-vo.js +2 -1
- package/dist/models/plan-level-enum.d.ts +22 -0
- package/dist/models/plan-level-enum.js +26 -0
- package/dist/models/plan-search-dto.d.ts +1 -0
- package/dist/models/plan-search-dto.js +2 -1
- package/dist/models/sys-user.d.ts +4 -4
- package/dist/models/work-order-type-subcategory-enum.d.ts +31 -0
- package/dist/models/work-order-type-subcategory-enum.js +32 -1
- package/models/get-user-wx200-response.ts +10 -10
- package/models/index.ts +1 -0
- package/models/ipage-access-vo.ts +4 -4
- package/models/period-detail-resp.ts +2 -1
- package/models/plan-add-vo.ts +12 -2
- package/models/plan-calendar-list-vo.ts +2 -1
- package/models/plan-detail-dto.ts +2 -1
- package/models/plan-edit-vo.ts +12 -2
- package/models/plan-level-enum.ts +32 -0
- package/models/plan-search-dto.ts +2 -1
- package/models/sys-user.ts +4 -4
- package/models/work-order-type-subcategory-enum.ts +32 -1
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -417,10 +417,11 @@ export const DisasterWarningStandardApiAxiosParamCreator = function (configurati
|
|
|
417
417
|
* @param {number} page 页码
|
|
418
418
|
* @param {DisasterWarningStandardCategoryEnum} [disasterWarningStandardCategory] 灾害预警分类
|
|
419
419
|
* @param {string} [searchValue] 内容
|
|
420
|
+
* @param {number} [executionTime] 执行时效
|
|
420
421
|
* @param {*} [options] Override http request option.
|
|
421
422
|
* @throws {RequiredError}
|
|
422
423
|
*/
|
|
423
|
-
disasterWarningStandardList: async (parkId: number, pageSize: number, page: number, disasterWarningStandardCategory?: DisasterWarningStandardCategoryEnum, searchValue?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
424
|
+
disasterWarningStandardList: async (parkId: number, pageSize: number, page: number, disasterWarningStandardCategory?: DisasterWarningStandardCategoryEnum, searchValue?: string, executionTime?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
424
425
|
// verify required parameter 'parkId' is not null or undefined
|
|
425
426
|
assertParamExists('disasterWarningStandardList', 'parkId', parkId)
|
|
426
427
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -463,6 +464,10 @@ export const DisasterWarningStandardApiAxiosParamCreator = function (configurati
|
|
|
463
464
|
localVarQueryParameter['searchValue'] = searchValue;
|
|
464
465
|
}
|
|
465
466
|
|
|
467
|
+
if (executionTime !== undefined) {
|
|
468
|
+
localVarQueryParameter['executionTime'] = executionTime;
|
|
469
|
+
}
|
|
470
|
+
|
|
466
471
|
|
|
467
472
|
|
|
468
473
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -694,11 +699,12 @@ export const DisasterWarningStandardApiFp = function(configuration?: Configurati
|
|
|
694
699
|
* @param {number} page 页码
|
|
695
700
|
* @param {DisasterWarningStandardCategoryEnum} [disasterWarningStandardCategory] 灾害预警分类
|
|
696
701
|
* @param {string} [searchValue] 内容
|
|
702
|
+
* @param {number} [executionTime] 执行时效
|
|
697
703
|
* @param {*} [options] Override http request option.
|
|
698
704
|
* @throws {RequiredError}
|
|
699
705
|
*/
|
|
700
|
-
async disasterWarningStandardList(parkId: number, pageSize: number, page: number, disasterWarningStandardCategory?: DisasterWarningStandardCategoryEnum, searchValue?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoDisasterWarningStandardEntity>> {
|
|
701
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.disasterWarningStandardList(parkId, pageSize, page, disasterWarningStandardCategory, searchValue, options);
|
|
706
|
+
async disasterWarningStandardList(parkId: number, pageSize: number, page: number, disasterWarningStandardCategory?: DisasterWarningStandardCategoryEnum, searchValue?: string, executionTime?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoDisasterWarningStandardEntity>> {
|
|
707
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.disasterWarningStandardList(parkId, pageSize, page, disasterWarningStandardCategory, searchValue, executionTime, options);
|
|
702
708
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
703
709
|
const localVarOperationServerBasePath = operationServerMap['DisasterWarningStandardApi.disasterWarningStandardList']?.[localVarOperationServerIndex]?.url;
|
|
704
710
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -835,7 +841,7 @@ export const DisasterWarningStandardApiFactory = function (configuration?: Confi
|
|
|
835
841
|
* @throws {RequiredError}
|
|
836
842
|
*/
|
|
837
843
|
disasterWarningStandardList(requestParameters: DisasterWarningStandardApiDisasterWarningStandardListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoDisasterWarningStandardEntity> {
|
|
838
|
-
return localVarFp.disasterWarningStandardList(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.disasterWarningStandardCategory, requestParameters.searchValue, options).then((request) => request(axios, basePath));
|
|
844
|
+
return localVarFp.disasterWarningStandardList(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.disasterWarningStandardCategory, requestParameters.searchValue, requestParameters.executionTime, options).then((request) => request(axios, basePath));
|
|
839
845
|
},
|
|
840
846
|
/**
|
|
841
847
|
*
|
|
@@ -1012,6 +1018,13 @@ export interface DisasterWarningStandardApiDisasterWarningStandardListRequest {
|
|
|
1012
1018
|
* @memberof DisasterWarningStandardApiDisasterWarningStandardList
|
|
1013
1019
|
*/
|
|
1014
1020
|
readonly searchValue?: string
|
|
1021
|
+
|
|
1022
|
+
/**
|
|
1023
|
+
* 执行时效
|
|
1024
|
+
* @type {number}
|
|
1025
|
+
* @memberof DisasterWarningStandardApiDisasterWarningStandardList
|
|
1026
|
+
*/
|
|
1027
|
+
readonly executionTime?: number
|
|
1015
1028
|
}
|
|
1016
1029
|
|
|
1017
1030
|
/**
|
|
@@ -1170,7 +1183,7 @@ export class DisasterWarningStandardApi extends BaseAPI {
|
|
|
1170
1183
|
* @memberof DisasterWarningStandardApi
|
|
1171
1184
|
*/
|
|
1172
1185
|
public disasterWarningStandardList(requestParameters: DisasterWarningStandardApiDisasterWarningStandardListRequest, options?: RawAxiosRequestConfig) {
|
|
1173
|
-
return DisasterWarningStandardApiFp(this.configuration).disasterWarningStandardList(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.disasterWarningStandardCategory, requestParameters.searchValue, options).then((request) => request(this.axios, this.basePath));
|
|
1186
|
+
return DisasterWarningStandardApiFp(this.configuration).disasterWarningStandardList(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.disasterWarningStandardCategory, requestParameters.searchValue, requestParameters.executionTime, options).then((request) => request(this.axios, this.basePath));
|
|
1174
1187
|
}
|
|
1175
1188
|
|
|
1176
1189
|
/**
|
package/apis/work-order-api.ts
CHANGED
|
@@ -4395,7 +4395,7 @@ export interface WorkOrderApiPlanListRequest {
|
|
|
4395
4395
|
|
|
4396
4396
|
/**
|
|
4397
4397
|
* 计划类型列表
|
|
4398
|
-
* @type {Array<'PLAN_TYPE_SHEBEIWEIBAO' | 'PLAN_TYPE_XUNJIAN_SPACE' | 'PLAN_TYPE_AI_INSPECTION' | 'PLAN_TYPE_XUNJIAN_EQUIPMENT'>}
|
|
4398
|
+
* @type {Array<'PLAN_TYPE_SHEBEIWEIBAO' | 'PLAN_TYPE_XUNJIAN_SPACE' | 'PLAN_TYPE_AI_INSPECTION' | 'PLAN_TYPE_XUNJIAN_EQUIPMENT' | 'PLAN_TYPE_DISASTER_WARNING'>}
|
|
4399
4399
|
* @memberof WorkOrderApiPlanList
|
|
4400
4400
|
*/
|
|
4401
4401
|
readonly planTypes?: Array<PlanListPlanTypesEnum>
|
|
@@ -5922,7 +5922,8 @@ export const PlanListPlanTypesEnum = {
|
|
|
5922
5922
|
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
5923
5923
|
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
5924
5924
|
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
5925
|
-
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
|
|
5925
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
5926
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
5926
5927
|
} as const;
|
|
5927
5928
|
export type PlanListPlanTypesEnum = typeof PlanListPlanTypesEnum[keyof typeof PlanListPlanTypesEnum];
|
|
5928
5929
|
/**
|
|
@@ -106,10 +106,11 @@ export declare const DisasterWarningStandardApiAxiosParamCreator: (configuration
|
|
|
106
106
|
* @param {number} page 页码
|
|
107
107
|
* @param {DisasterWarningStandardCategoryEnum} [disasterWarningStandardCategory] 灾害预警分类
|
|
108
108
|
* @param {string} [searchValue] 内容
|
|
109
|
+
* @param {number} [executionTime] 执行时效
|
|
109
110
|
* @param {*} [options] Override http request option.
|
|
110
111
|
* @throws {RequiredError}
|
|
111
112
|
*/
|
|
112
|
-
disasterWarningStandardList: (parkId: number, pageSize: number, page: number, disasterWarningStandardCategory?: DisasterWarningStandardCategoryEnum, searchValue?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
113
|
+
disasterWarningStandardList: (parkId: number, pageSize: number, page: number, disasterWarningStandardCategory?: DisasterWarningStandardCategoryEnum, searchValue?: string, executionTime?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
113
114
|
/**
|
|
114
115
|
*
|
|
115
116
|
* @summary 修改灾害预警标准
|
|
@@ -214,10 +215,11 @@ export declare const DisasterWarningStandardApiFp: (configuration?: Configuratio
|
|
|
214
215
|
* @param {number} page 页码
|
|
215
216
|
* @param {DisasterWarningStandardCategoryEnum} [disasterWarningStandardCategory] 灾害预警分类
|
|
216
217
|
* @param {string} [searchValue] 内容
|
|
218
|
+
* @param {number} [executionTime] 执行时效
|
|
217
219
|
* @param {*} [options] Override http request option.
|
|
218
220
|
* @throws {RequiredError}
|
|
219
221
|
*/
|
|
220
|
-
disasterWarningStandardList(parkId: number, pageSize: number, page: number, disasterWarningStandardCategory?: DisasterWarningStandardCategoryEnum, searchValue?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoDisasterWarningStandardEntity>>;
|
|
222
|
+
disasterWarningStandardList(parkId: number, pageSize: number, page: number, disasterWarningStandardCategory?: DisasterWarningStandardCategoryEnum, searchValue?: string, executionTime?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoDisasterWarningStandardEntity>>;
|
|
221
223
|
/**
|
|
222
224
|
*
|
|
223
225
|
* @summary 修改灾害预警标准
|
|
@@ -473,6 +475,12 @@ export interface DisasterWarningStandardApiDisasterWarningStandardListRequest {
|
|
|
473
475
|
* @memberof DisasterWarningStandardApiDisasterWarningStandardList
|
|
474
476
|
*/
|
|
475
477
|
readonly searchValue?: string;
|
|
478
|
+
/**
|
|
479
|
+
* 执行时效
|
|
480
|
+
* @type {number}
|
|
481
|
+
* @memberof DisasterWarningStandardApiDisasterWarningStandardList
|
|
482
|
+
*/
|
|
483
|
+
readonly executionTime?: number;
|
|
476
484
|
}
|
|
477
485
|
/**
|
|
478
486
|
* Request parameters for disasterWarningStandardUpdate operation in DisasterWarningStandardApi.
|
|
@@ -346,10 +346,11 @@ const DisasterWarningStandardApiAxiosParamCreator = function (configuration) {
|
|
|
346
346
|
* @param {number} page 页码
|
|
347
347
|
* @param {DisasterWarningStandardCategoryEnum} [disasterWarningStandardCategory] 灾害预警分类
|
|
348
348
|
* @param {string} [searchValue] 内容
|
|
349
|
+
* @param {number} [executionTime] 执行时效
|
|
349
350
|
* @param {*} [options] Override http request option.
|
|
350
351
|
* @throws {RequiredError}
|
|
351
352
|
*/
|
|
352
|
-
disasterWarningStandardList: (parkId_1, pageSize_1, page_1, disasterWarningStandardCategory_1, searchValue_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, disasterWarningStandardCategory_1, searchValue_1, ...args_1], void 0, function* (parkId, pageSize, page, disasterWarningStandardCategory, searchValue, options = {}) {
|
|
353
|
+
disasterWarningStandardList: (parkId_1, pageSize_1, page_1, disasterWarningStandardCategory_1, searchValue_1, executionTime_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, disasterWarningStandardCategory_1, searchValue_1, executionTime_1, ...args_1], void 0, function* (parkId, pageSize, page, disasterWarningStandardCategory, searchValue, executionTime, options = {}) {
|
|
353
354
|
// verify required parameter 'parkId' is not null or undefined
|
|
354
355
|
(0, common_1.assertParamExists)('disasterWarningStandardList', 'parkId', parkId);
|
|
355
356
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -384,6 +385,9 @@ const DisasterWarningStandardApiAxiosParamCreator = function (configuration) {
|
|
|
384
385
|
if (searchValue !== undefined) {
|
|
385
386
|
localVarQueryParameter['searchValue'] = searchValue;
|
|
386
387
|
}
|
|
388
|
+
if (executionTime !== undefined) {
|
|
389
|
+
localVarQueryParameter['executionTime'] = executionTime;
|
|
390
|
+
}
|
|
387
391
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
388
392
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
389
393
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -625,13 +629,14 @@ const DisasterWarningStandardApiFp = function (configuration) {
|
|
|
625
629
|
* @param {number} page 页码
|
|
626
630
|
* @param {DisasterWarningStandardCategoryEnum} [disasterWarningStandardCategory] 灾害预警分类
|
|
627
631
|
* @param {string} [searchValue] 内容
|
|
632
|
+
* @param {number} [executionTime] 执行时效
|
|
628
633
|
* @param {*} [options] Override http request option.
|
|
629
634
|
* @throws {RequiredError}
|
|
630
635
|
*/
|
|
631
|
-
disasterWarningStandardList(parkId, pageSize, page, disasterWarningStandardCategory, searchValue, options) {
|
|
636
|
+
disasterWarningStandardList(parkId, pageSize, page, disasterWarningStandardCategory, searchValue, executionTime, options) {
|
|
632
637
|
return __awaiter(this, void 0, void 0, function* () {
|
|
633
638
|
var _a, _b, _c;
|
|
634
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.disasterWarningStandardList(parkId, pageSize, page, disasterWarningStandardCategory, searchValue, options);
|
|
639
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.disasterWarningStandardList(parkId, pageSize, page, disasterWarningStandardCategory, searchValue, executionTime, options);
|
|
635
640
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
636
641
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DisasterWarningStandardApi.disasterWarningStandardList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
637
642
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -775,7 +780,7 @@ const DisasterWarningStandardApiFactory = function (configuration, basePath, axi
|
|
|
775
780
|
* @throws {RequiredError}
|
|
776
781
|
*/
|
|
777
782
|
disasterWarningStandardList(requestParameters, options) {
|
|
778
|
-
return localVarFp.disasterWarningStandardList(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.disasterWarningStandardCategory, requestParameters.searchValue, options).then((request) => request(axios, basePath));
|
|
783
|
+
return localVarFp.disasterWarningStandardList(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.disasterWarningStandardCategory, requestParameters.searchValue, requestParameters.executionTime, options).then((request) => request(axios, basePath));
|
|
779
784
|
},
|
|
780
785
|
/**
|
|
781
786
|
*
|
|
@@ -912,7 +917,7 @@ class DisasterWarningStandardApi extends base_1.BaseAPI {
|
|
|
912
917
|
* @memberof DisasterWarningStandardApi
|
|
913
918
|
*/
|
|
914
919
|
disasterWarningStandardList(requestParameters, options) {
|
|
915
|
-
return (0, exports.DisasterWarningStandardApiFp)(this.configuration).disasterWarningStandardList(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.disasterWarningStandardCategory, requestParameters.searchValue, options).then((request) => request(this.axios, this.basePath));
|
|
920
|
+
return (0, exports.DisasterWarningStandardApiFp)(this.configuration).disasterWarningStandardList(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.disasterWarningStandardCategory, requestParameters.searchValue, requestParameters.executionTime, options).then((request) => request(this.axios, this.basePath));
|
|
916
921
|
}
|
|
917
922
|
/**
|
|
918
923
|
*
|
|
@@ -1885,7 +1885,7 @@ export interface WorkOrderApiPlanListRequest {
|
|
|
1885
1885
|
readonly deptIds?: Array<number>;
|
|
1886
1886
|
/**
|
|
1887
1887
|
* 计划类型列表
|
|
1888
|
-
* @type {Array<'PLAN_TYPE_SHEBEIWEIBAO' | 'PLAN_TYPE_XUNJIAN_SPACE' | 'PLAN_TYPE_AI_INSPECTION' | 'PLAN_TYPE_XUNJIAN_EQUIPMENT'>}
|
|
1888
|
+
* @type {Array<'PLAN_TYPE_SHEBEIWEIBAO' | 'PLAN_TYPE_XUNJIAN_SPACE' | 'PLAN_TYPE_AI_INSPECTION' | 'PLAN_TYPE_XUNJIAN_EQUIPMENT' | 'PLAN_TYPE_DISASTER_WARNING'>}
|
|
1889
1889
|
* @memberof WorkOrderApiPlanList
|
|
1890
1890
|
*/
|
|
1891
1891
|
readonly planTypes?: Array<PlanListPlanTypesEnum>;
|
|
@@ -3163,6 +3163,7 @@ export declare const PlanListPlanTypesEnum: {
|
|
|
3163
3163
|
readonly PlanTypeXunjianSpace: "PLAN_TYPE_XUNJIAN_SPACE";
|
|
3164
3164
|
readonly PlanTypeAiInspection: "PLAN_TYPE_AI_INSPECTION";
|
|
3165
3165
|
readonly PlanTypeXunjianEquipment: "PLAN_TYPE_XUNJIAN_EQUIPMENT";
|
|
3166
|
+
readonly PlanTypeDisasterWarning: "PLAN_TYPE_DISASTER_WARNING";
|
|
3166
3167
|
};
|
|
3167
3168
|
export type PlanListPlanTypesEnum = typeof PlanListPlanTypesEnum[keyof typeof PlanListPlanTypesEnum];
|
|
3168
3169
|
/**
|
|
@@ -4308,7 +4308,8 @@ exports.PlanListPlanTypesEnum = {
|
|
|
4308
4308
|
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
4309
4309
|
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
4310
4310
|
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
4311
|
-
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
|
|
4311
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
4312
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
4312
4313
|
};
|
|
4313
4314
|
/**
|
|
4314
4315
|
* @export
|
|
@@ -106,10 +106,11 @@ export declare const DisasterWarningStandardApiAxiosParamCreator: (configuration
|
|
|
106
106
|
* @param {number} page 页码
|
|
107
107
|
* @param {DisasterWarningStandardCategoryEnum} [disasterWarningStandardCategory] 灾害预警分类
|
|
108
108
|
* @param {string} [searchValue] 内容
|
|
109
|
+
* @param {number} [executionTime] 执行时效
|
|
109
110
|
* @param {*} [options] Override http request option.
|
|
110
111
|
* @throws {RequiredError}
|
|
111
112
|
*/
|
|
112
|
-
disasterWarningStandardList: (parkId: number, pageSize: number, page: number, disasterWarningStandardCategory?: DisasterWarningStandardCategoryEnum, searchValue?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
113
|
+
disasterWarningStandardList: (parkId: number, pageSize: number, page: number, disasterWarningStandardCategory?: DisasterWarningStandardCategoryEnum, searchValue?: string, executionTime?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
113
114
|
/**
|
|
114
115
|
*
|
|
115
116
|
* @summary 修改灾害预警标准
|
|
@@ -214,10 +215,11 @@ export declare const DisasterWarningStandardApiFp: (configuration?: Configuratio
|
|
|
214
215
|
* @param {number} page 页码
|
|
215
216
|
* @param {DisasterWarningStandardCategoryEnum} [disasterWarningStandardCategory] 灾害预警分类
|
|
216
217
|
* @param {string} [searchValue] 内容
|
|
218
|
+
* @param {number} [executionTime] 执行时效
|
|
217
219
|
* @param {*} [options] Override http request option.
|
|
218
220
|
* @throws {RequiredError}
|
|
219
221
|
*/
|
|
220
|
-
disasterWarningStandardList(parkId: number, pageSize: number, page: number, disasterWarningStandardCategory?: DisasterWarningStandardCategoryEnum, searchValue?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoDisasterWarningStandardEntity>>;
|
|
222
|
+
disasterWarningStandardList(parkId: number, pageSize: number, page: number, disasterWarningStandardCategory?: DisasterWarningStandardCategoryEnum, searchValue?: string, executionTime?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoDisasterWarningStandardEntity>>;
|
|
221
223
|
/**
|
|
222
224
|
*
|
|
223
225
|
* @summary 修改灾害预警标准
|
|
@@ -473,6 +475,12 @@ export interface DisasterWarningStandardApiDisasterWarningStandardListRequest {
|
|
|
473
475
|
* @memberof DisasterWarningStandardApiDisasterWarningStandardList
|
|
474
476
|
*/
|
|
475
477
|
readonly searchValue?: string;
|
|
478
|
+
/**
|
|
479
|
+
* 执行时效
|
|
480
|
+
* @type {number}
|
|
481
|
+
* @memberof DisasterWarningStandardApiDisasterWarningStandardList
|
|
482
|
+
*/
|
|
483
|
+
readonly executionTime?: number;
|
|
476
484
|
}
|
|
477
485
|
/**
|
|
478
486
|
* Request parameters for disasterWarningStandardUpdate operation in DisasterWarningStandardApi.
|
|
@@ -343,10 +343,11 @@ export const DisasterWarningStandardApiAxiosParamCreator = function (configurati
|
|
|
343
343
|
* @param {number} page 页码
|
|
344
344
|
* @param {DisasterWarningStandardCategoryEnum} [disasterWarningStandardCategory] 灾害预警分类
|
|
345
345
|
* @param {string} [searchValue] 内容
|
|
346
|
+
* @param {number} [executionTime] 执行时效
|
|
346
347
|
* @param {*} [options] Override http request option.
|
|
347
348
|
* @throws {RequiredError}
|
|
348
349
|
*/
|
|
349
|
-
disasterWarningStandardList: (parkId_1, pageSize_1, page_1, disasterWarningStandardCategory_1, searchValue_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, disasterWarningStandardCategory_1, searchValue_1, ...args_1], void 0, function* (parkId, pageSize, page, disasterWarningStandardCategory, searchValue, options = {}) {
|
|
350
|
+
disasterWarningStandardList: (parkId_1, pageSize_1, page_1, disasterWarningStandardCategory_1, searchValue_1, executionTime_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, disasterWarningStandardCategory_1, searchValue_1, executionTime_1, ...args_1], void 0, function* (parkId, pageSize, page, disasterWarningStandardCategory, searchValue, executionTime, options = {}) {
|
|
350
351
|
// verify required parameter 'parkId' is not null or undefined
|
|
351
352
|
assertParamExists('disasterWarningStandardList', 'parkId', parkId);
|
|
352
353
|
// verify required parameter 'pageSize' is not null or undefined
|
|
@@ -381,6 +382,9 @@ export const DisasterWarningStandardApiAxiosParamCreator = function (configurati
|
|
|
381
382
|
if (searchValue !== undefined) {
|
|
382
383
|
localVarQueryParameter['searchValue'] = searchValue;
|
|
383
384
|
}
|
|
385
|
+
if (executionTime !== undefined) {
|
|
386
|
+
localVarQueryParameter['executionTime'] = executionTime;
|
|
387
|
+
}
|
|
384
388
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
385
389
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
386
390
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -621,13 +625,14 @@ export const DisasterWarningStandardApiFp = function (configuration) {
|
|
|
621
625
|
* @param {number} page 页码
|
|
622
626
|
* @param {DisasterWarningStandardCategoryEnum} [disasterWarningStandardCategory] 灾害预警分类
|
|
623
627
|
* @param {string} [searchValue] 内容
|
|
628
|
+
* @param {number} [executionTime] 执行时效
|
|
624
629
|
* @param {*} [options] Override http request option.
|
|
625
630
|
* @throws {RequiredError}
|
|
626
631
|
*/
|
|
627
|
-
disasterWarningStandardList(parkId, pageSize, page, disasterWarningStandardCategory, searchValue, options) {
|
|
632
|
+
disasterWarningStandardList(parkId, pageSize, page, disasterWarningStandardCategory, searchValue, executionTime, options) {
|
|
628
633
|
return __awaiter(this, void 0, void 0, function* () {
|
|
629
634
|
var _a, _b, _c;
|
|
630
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.disasterWarningStandardList(parkId, pageSize, page, disasterWarningStandardCategory, searchValue, options);
|
|
635
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.disasterWarningStandardList(parkId, pageSize, page, disasterWarningStandardCategory, searchValue, executionTime, options);
|
|
631
636
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
632
637
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DisasterWarningStandardApi.disasterWarningStandardList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
633
638
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -770,7 +775,7 @@ export const DisasterWarningStandardApiFactory = function (configuration, basePa
|
|
|
770
775
|
* @throws {RequiredError}
|
|
771
776
|
*/
|
|
772
777
|
disasterWarningStandardList(requestParameters, options) {
|
|
773
|
-
return localVarFp.disasterWarningStandardList(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.disasterWarningStandardCategory, requestParameters.searchValue, options).then((request) => request(axios, basePath));
|
|
778
|
+
return localVarFp.disasterWarningStandardList(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.disasterWarningStandardCategory, requestParameters.searchValue, requestParameters.executionTime, options).then((request) => request(axios, basePath));
|
|
774
779
|
},
|
|
775
780
|
/**
|
|
776
781
|
*
|
|
@@ -906,7 +911,7 @@ export class DisasterWarningStandardApi extends BaseAPI {
|
|
|
906
911
|
* @memberof DisasterWarningStandardApi
|
|
907
912
|
*/
|
|
908
913
|
disasterWarningStandardList(requestParameters, options) {
|
|
909
|
-
return DisasterWarningStandardApiFp(this.configuration).disasterWarningStandardList(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.disasterWarningStandardCategory, requestParameters.searchValue, options).then((request) => request(this.axios, this.basePath));
|
|
914
|
+
return DisasterWarningStandardApiFp(this.configuration).disasterWarningStandardList(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.disasterWarningStandardCategory, requestParameters.searchValue, requestParameters.executionTime, options).then((request) => request(this.axios, this.basePath));
|
|
910
915
|
}
|
|
911
916
|
/**
|
|
912
917
|
*
|
|
@@ -1885,7 +1885,7 @@ export interface WorkOrderApiPlanListRequest {
|
|
|
1885
1885
|
readonly deptIds?: Array<number>;
|
|
1886
1886
|
/**
|
|
1887
1887
|
* 计划类型列表
|
|
1888
|
-
* @type {Array<'PLAN_TYPE_SHEBEIWEIBAO' | 'PLAN_TYPE_XUNJIAN_SPACE' | 'PLAN_TYPE_AI_INSPECTION' | 'PLAN_TYPE_XUNJIAN_EQUIPMENT'>}
|
|
1888
|
+
* @type {Array<'PLAN_TYPE_SHEBEIWEIBAO' | 'PLAN_TYPE_XUNJIAN_SPACE' | 'PLAN_TYPE_AI_INSPECTION' | 'PLAN_TYPE_XUNJIAN_EQUIPMENT' | 'PLAN_TYPE_DISASTER_WARNING'>}
|
|
1889
1889
|
* @memberof WorkOrderApiPlanList
|
|
1890
1890
|
*/
|
|
1891
1891
|
readonly planTypes?: Array<PlanListPlanTypesEnum>;
|
|
@@ -3163,6 +3163,7 @@ export declare const PlanListPlanTypesEnum: {
|
|
|
3163
3163
|
readonly PlanTypeXunjianSpace: "PLAN_TYPE_XUNJIAN_SPACE";
|
|
3164
3164
|
readonly PlanTypeAiInspection: "PLAN_TYPE_AI_INSPECTION";
|
|
3165
3165
|
readonly PlanTypeXunjianEquipment: "PLAN_TYPE_XUNJIAN_EQUIPMENT";
|
|
3166
|
+
readonly PlanTypeDisasterWarning: "PLAN_TYPE_DISASTER_WARNING";
|
|
3166
3167
|
};
|
|
3167
3168
|
export type PlanListPlanTypesEnum = typeof PlanListPlanTypesEnum[keyof typeof PlanListPlanTypesEnum];
|
|
3168
3169
|
/**
|
|
@@ -4301,7 +4301,8 @@ export const PlanListPlanTypesEnum = {
|
|
|
4301
4301
|
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
4302
4302
|
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
4303
4303
|
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
4304
|
-
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
|
|
4304
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
4305
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
4305
4306
|
};
|
|
4306
4307
|
/**
|
|
4307
4308
|
* @export
|
|
@@ -19,16 +19,16 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
|
-
* @type {
|
|
22
|
+
* @type {Array<string>}
|
|
23
23
|
* @memberof GetUserWx200Response
|
|
24
24
|
*/
|
|
25
|
-
'
|
|
25
|
+
'headerNames'?: Array<string>;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
|
-
* @type {
|
|
28
|
+
* @type {number}
|
|
29
29
|
* @memberof GetUserWx200Response
|
|
30
30
|
*/
|
|
31
|
-
'
|
|
31
|
+
'status'?: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
34
|
* @type {object}
|
|
@@ -65,6 +65,12 @@ export interface GetUserWx200Response {
|
|
|
65
65
|
* @memberof GetUserWx200Response
|
|
66
66
|
*/
|
|
67
67
|
'bufferSize'?: number;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {object}
|
|
71
|
+
* @memberof GetUserWx200Response
|
|
72
|
+
*/
|
|
73
|
+
'writer'?: object;
|
|
68
74
|
/**
|
|
69
75
|
*
|
|
70
76
|
* @type {number}
|
|
@@ -83,10 +89,4 @@ export interface GetUserWx200Response {
|
|
|
83
89
|
* @memberof GetUserWx200Response
|
|
84
90
|
*/
|
|
85
91
|
'characterEncoding'?: string;
|
|
86
|
-
/**
|
|
87
|
-
*
|
|
88
|
-
* @type {object}
|
|
89
|
-
* @memberof GetUserWx200Response
|
|
90
|
-
*/
|
|
91
|
-
'writer'?: object;
|
|
92
92
|
}
|
|
@@ -715,6 +715,7 @@ export * from './plan-image-list';
|
|
|
715
715
|
export * from './plan-inspection-items-dto';
|
|
716
716
|
export * from './plan-item-add-vo';
|
|
717
717
|
export * from './plan-item-edit-vo';
|
|
718
|
+
export * from './plan-level-enum';
|
|
718
719
|
export * from './plan-search-dto';
|
|
719
720
|
export * from './plan-to-state-vo';
|
|
720
721
|
export * from './privacy-add-vo';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -715,6 +715,7 @@ export * from './plan-image-list';
|
|
|
715
715
|
export * from './plan-inspection-items-dto';
|
|
716
716
|
export * from './plan-item-add-vo';
|
|
717
717
|
export * from './plan-item-edit-vo';
|
|
718
|
+
export * from './plan-level-enum';
|
|
718
719
|
export * from './plan-search-dto';
|
|
719
720
|
export * from './plan-to-state-vo';
|
|
720
721
|
export * from './privacy-add-vo';
|
|
@@ -24,16 +24,16 @@ export interface IPageAccessVO {
|
|
|
24
24
|
'total'?: number;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
|
-
* @type {
|
|
27
|
+
* @type {number}
|
|
28
28
|
* @memberof IPageAccessVO
|
|
29
29
|
*/
|
|
30
|
-
'
|
|
30
|
+
'current'?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {Array<AccessVO>}
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
35
|
*/
|
|
36
|
-
'
|
|
36
|
+
'records'?: Array<AccessVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {number}
|
|
@@ -213,5 +213,6 @@ export declare const PeriodDetailRespPlanTypeEnum: {
|
|
|
213
213
|
readonly PlanTypeXunjianSpace: "PLAN_TYPE_XUNJIAN_SPACE";
|
|
214
214
|
readonly PlanTypeAiInspection: "PLAN_TYPE_AI_INSPECTION";
|
|
215
215
|
readonly PlanTypeXunjianEquipment: "PLAN_TYPE_XUNJIAN_EQUIPMENT";
|
|
216
|
+
readonly PlanTypeDisasterWarning: "PLAN_TYPE_DISASTER_WARNING";
|
|
216
217
|
};
|
|
217
218
|
export type PeriodDetailRespPlanTypeEnum = typeof PeriodDetailRespPlanTypeEnum[keyof typeof PeriodDetailRespPlanTypeEnum];
|
|
@@ -20,5 +20,6 @@ export const PeriodDetailRespPlanTypeEnum = {
|
|
|
20
20
|
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
21
21
|
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
22
22
|
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
23
|
-
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
|
|
23
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
24
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
24
25
|
};
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { InspectionItemContentVo } from './inspection-item-content-vo';
|
|
13
13
|
import type { PlanItemAddVo } from './plan-item-add-vo';
|
|
14
|
+
import type { PlanLevelEnum } from './plan-level-enum';
|
|
14
15
|
import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
|
|
15
16
|
/**
|
|
16
17
|
* 计划工单新建请求参数
|
|
@@ -65,7 +66,7 @@ export interface PlanAddVo {
|
|
|
65
66
|
* @type {PlanItemAddVo}
|
|
66
67
|
* @memberof PlanAddVo
|
|
67
68
|
*/
|
|
68
|
-
'planItem'
|
|
69
|
+
'planItem'?: PlanItemAddVo;
|
|
69
70
|
/**
|
|
70
71
|
* 巡检项巡检内容
|
|
71
72
|
* @type {Array<InspectionItemContentVo>}
|
|
@@ -84,11 +85,18 @@ export interface PlanAddVo {
|
|
|
84
85
|
* @memberof PlanAddVo
|
|
85
86
|
*/
|
|
86
87
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @type {PlanLevelEnum}
|
|
91
|
+
* @memberof PlanAddVo
|
|
92
|
+
*/
|
|
93
|
+
'planLevel'?: PlanLevelEnum;
|
|
87
94
|
}
|
|
88
95
|
export declare const PlanAddVoPlanTypeEnum: {
|
|
89
96
|
readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
|
|
90
97
|
readonly PlanTypeXunjianSpace: "PLAN_TYPE_XUNJIAN_SPACE";
|
|
91
98
|
readonly PlanTypeAiInspection: "PLAN_TYPE_AI_INSPECTION";
|
|
92
99
|
readonly PlanTypeXunjianEquipment: "PLAN_TYPE_XUNJIAN_EQUIPMENT";
|
|
100
|
+
readonly PlanTypeDisasterWarning: "PLAN_TYPE_DISASTER_WARNING";
|
|
93
101
|
};
|
|
94
102
|
export type PlanAddVoPlanTypeEnum = typeof PlanAddVoPlanTypeEnum[keyof typeof PlanAddVoPlanTypeEnum];
|
|
@@ -15,5 +15,6 @@ export const PlanAddVoPlanTypeEnum = {
|
|
|
15
15
|
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
16
16
|
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
17
17
|
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
18
|
-
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
|
|
18
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
19
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
19
20
|
};
|
|
@@ -45,5 +45,6 @@ export declare const PlanCalendarListVoTypeEnum: {
|
|
|
45
45
|
readonly PlanTypeXunjianSpace: "PLAN_TYPE_XUNJIAN_SPACE";
|
|
46
46
|
readonly PlanTypeAiInspection: "PLAN_TYPE_AI_INSPECTION";
|
|
47
47
|
readonly PlanTypeXunjianEquipment: "PLAN_TYPE_XUNJIAN_EQUIPMENT";
|
|
48
|
+
readonly PlanTypeDisasterWarning: "PLAN_TYPE_DISASTER_WARNING";
|
|
48
49
|
};
|
|
49
50
|
export type PlanCalendarListVoTypeEnum = typeof PlanCalendarListVoTypeEnum[keyof typeof PlanCalendarListVoTypeEnum];
|
|
@@ -15,5 +15,6 @@ export const PlanCalendarListVoTypeEnum = {
|
|
|
15
15
|
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
16
16
|
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
17
17
|
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
18
|
-
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
|
|
18
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
19
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
19
20
|
};
|
|
@@ -102,5 +102,6 @@ export declare const PlanDetailDTOPlanTypeEnum: {
|
|
|
102
102
|
readonly PlanTypeXunjianSpace: "PLAN_TYPE_XUNJIAN_SPACE";
|
|
103
103
|
readonly PlanTypeAiInspection: "PLAN_TYPE_AI_INSPECTION";
|
|
104
104
|
readonly PlanTypeXunjianEquipment: "PLAN_TYPE_XUNJIAN_EQUIPMENT";
|
|
105
|
+
readonly PlanTypeDisasterWarning: "PLAN_TYPE_DISASTER_WARNING";
|
|
105
106
|
};
|
|
106
107
|
export type PlanDetailDTOPlanTypeEnum = typeof PlanDetailDTOPlanTypeEnum[keyof typeof PlanDetailDTOPlanTypeEnum];
|
|
@@ -15,5 +15,6 @@ export const PlanDetailDTOPlanTypeEnum = {
|
|
|
15
15
|
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
16
16
|
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
17
17
|
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
18
|
-
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
|
|
18
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
19
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
19
20
|
};
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { InspectionItemContentVo } from './inspection-item-content-vo';
|
|
13
13
|
import type { PlanItemEditVo } from './plan-item-edit-vo';
|
|
14
|
+
import type { PlanLevelEnum } from './plan-level-enum';
|
|
14
15
|
import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
|
|
15
16
|
/**
|
|
16
17
|
* 计划工单编辑请求参数
|
|
@@ -59,7 +60,7 @@ export interface PlanEditVo {
|
|
|
59
60
|
* @type {PlanItemEditVo}
|
|
60
61
|
* @memberof PlanEditVo
|
|
61
62
|
*/
|
|
62
|
-
'planItem'
|
|
63
|
+
'planItem'?: PlanItemEditVo;
|
|
63
64
|
/**
|
|
64
65
|
* 巡检项巡检内容
|
|
65
66
|
* @type {Array<InspectionItemContentVo>}
|
|
@@ -72,11 +73,18 @@ export interface PlanEditVo {
|
|
|
72
73
|
* @memberof PlanEditVo
|
|
73
74
|
*/
|
|
74
75
|
'workOrderTypeSubcategory': WorkOrderTypeSubcategoryEnum;
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* @type {PlanLevelEnum}
|
|
79
|
+
* @memberof PlanEditVo
|
|
80
|
+
*/
|
|
81
|
+
'planLevel'?: PlanLevelEnum;
|
|
75
82
|
}
|
|
76
83
|
export declare const PlanEditVoPlanTypeEnum: {
|
|
77
84
|
readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
|
|
78
85
|
readonly PlanTypeXunjianSpace: "PLAN_TYPE_XUNJIAN_SPACE";
|
|
79
86
|
readonly PlanTypeAiInspection: "PLAN_TYPE_AI_INSPECTION";
|
|
80
87
|
readonly PlanTypeXunjianEquipment: "PLAN_TYPE_XUNJIAN_EQUIPMENT";
|
|
88
|
+
readonly PlanTypeDisasterWarning: "PLAN_TYPE_DISASTER_WARNING";
|
|
81
89
|
};
|
|
82
90
|
export type PlanEditVoPlanTypeEnum = typeof PlanEditVoPlanTypeEnum[keyof typeof PlanEditVoPlanTypeEnum];
|
|
@@ -15,5 +15,6 @@ export const PlanEditVoPlanTypeEnum = {
|
|
|
15
15
|
PlanTypeShebeiweibao: 'PLAN_TYPE_SHEBEIWEIBAO',
|
|
16
16
|
PlanTypeXunjianSpace: 'PLAN_TYPE_XUNJIAN_SPACE',
|
|
17
17
|
PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
|
|
18
|
-
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
|
|
18
|
+
PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT',
|
|
19
|
+
PlanTypeDisasterWarning: 'PLAN_TYPE_DISASTER_WARNING'
|
|
19
20
|
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenAPI definition
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* 计划级别枚举
|
|
14
|
+
* @export
|
|
15
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare const PlanLevelEnum: {
|
|
18
|
+
readonly Red: "RED";
|
|
19
|
+
readonly Orange: "ORANGE";
|
|
20
|
+
readonly Yellow: "YELLOW";
|
|
21
|
+
};
|
|
22
|
+
export type PlanLevelEnum = typeof PlanLevelEnum[keyof typeof PlanLevelEnum];
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* 计划级别枚举
|
|
16
|
+
* @export
|
|
17
|
+
* @enum {string}
|
|
18
|
+
*/
|
|
19
|
+
export const PlanLevelEnum = {
|
|
20
|
+
Red: 'RED',
|
|
21
|
+
Orange: 'ORANGE',
|
|
22
|
+
Yellow: 'YELLOW'
|
|
23
|
+
};
|