@gizone/rrs-client 4.2.5-alpha.393 → 4.2.5-alpha.395

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.
@@ -158,6 +158,7 @@ models/excel-import-result-dtomaintenance-standard-import-dto.ts
158
158
  models/excel-import-result-dtosurveillance-batch-import-template-dto.ts
159
159
  models/excel-import-result-dtosurveillance-settings-export-dto.ts
160
160
  models/excel-import-upload-to-redis-vo-space-add-excel-dto.ts
161
+ models/exploration-work-order-add-vo.ts
161
162
  models/exploration-work-order-details-dto.ts
162
163
  models/exploration-work-order-info.ts
163
164
  models/exploration-work-order-submit-vo.ts
@@ -22,6 +22,8 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
22
22
  // @ts-ignore
23
23
  import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
24
24
  // @ts-ignore
25
+ import type { ExplorationWorkOrderAddVo } from '../models';
26
+ // @ts-ignore
25
27
  import type { InspectionCompleteVO } from '../models';
26
28
  // @ts-ignore
27
29
  import type { InspectionHandleReq } from '../models';
@@ -1726,6 +1728,46 @@ export const WorkOrderApiAxiosParamCreator = function (configuration?: Configura
1726
1728
  options: localVarRequestOptions,
1727
1729
  };
1728
1730
  },
1731
+ /**
1732
+ *
1733
+ * @summary 新增勘探工单
1734
+ * @param {ExplorationWorkOrderAddVo} explorationWorkOrderAddVo
1735
+ * @param {*} [options] Override http request option.
1736
+ * @throws {RequiredError}
1737
+ */
1738
+ workOrderExplorationAdd: async (explorationWorkOrderAddVo: ExplorationWorkOrderAddVo, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1739
+ // verify required parameter 'explorationWorkOrderAddVo' is not null or undefined
1740
+ assertParamExists('workOrderExplorationAdd', 'explorationWorkOrderAddVo', explorationWorkOrderAddVo)
1741
+ const localVarPath = `/gizone/workorder/exploration`;
1742
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1743
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1744
+ let baseOptions;
1745
+ if (configuration) {
1746
+ baseOptions = configuration.baseOptions;
1747
+ }
1748
+
1749
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
1750
+ const localVarHeaderParameter = {} as any;
1751
+ const localVarQueryParameter = {} as any;
1752
+
1753
+ // authentication tokenScheme required
1754
+ // http bearer authentication required
1755
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
1756
+
1757
+
1758
+
1759
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1760
+
1761
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1762
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1763
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1764
+ localVarRequestOptions.data = serializeDataIfNeeded(explorationWorkOrderAddVo, localVarRequestOptions, configuration)
1765
+
1766
+ return {
1767
+ url: toPathString(localVarUrlObj),
1768
+ options: localVarRequestOptions,
1769
+ };
1770
+ },
1729
1771
  /**
1730
1772
  *
1731
1773
  * @summary 勘探工单详情
@@ -3312,6 +3354,19 @@ export const WorkOrderApiFp = function(configuration?: Configuration) {
3312
3354
  const localVarOperationServerBasePath = operationServerMap['WorkOrderApi.workOrderDistributeLeaflets']?.[localVarOperationServerIndex]?.url;
3313
3355
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3314
3356
  },
3357
+ /**
3358
+ *
3359
+ * @summary 新增勘探工单
3360
+ * @param {ExplorationWorkOrderAddVo} explorationWorkOrderAddVo
3361
+ * @param {*} [options] Override http request option.
3362
+ * @throws {RequiredError}
3363
+ */
3364
+ async workOrderExplorationAdd(explorationWorkOrderAddVo: ExplorationWorkOrderAddVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultInteger>> {
3365
+ const localVarAxiosArgs = await localVarAxiosParamCreator.workOrderExplorationAdd(explorationWorkOrderAddVo, options);
3366
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
3367
+ const localVarOperationServerBasePath = operationServerMap['WorkOrderApi.workOrderExplorationAdd']?.[localVarOperationServerIndex]?.url;
3368
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3369
+ },
3315
3370
  /**
3316
3371
  *
3317
3372
  * @summary 勘探工单详情
@@ -4010,6 +4065,16 @@ export const WorkOrderApiFactory = function (configuration?: Configuration, base
4010
4065
  workOrderDistributeLeaflets(requestParameters: WorkOrderApiWorkOrderDistributeLeafletsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid> {
4011
4066
  return localVarFp.workOrderDistributeLeaflets(requestParameters.workOrderDistributeLeafletsVo, options).then((request) => request(axios, basePath));
4012
4067
  },
4068
+ /**
4069
+ *
4070
+ * @summary 新增勘探工单
4071
+ * @param {WorkOrderApiWorkOrderExplorationAddRequest} requestParameters Request parameters.
4072
+ * @param {*} [options] Override http request option.
4073
+ * @throws {RequiredError}
4074
+ */
4075
+ workOrderExplorationAdd(requestParameters: WorkOrderApiWorkOrderExplorationAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultInteger> {
4076
+ return localVarFp.workOrderExplorationAdd(requestParameters.explorationWorkOrderAddVo, options).then((request) => request(axios, basePath));
4077
+ },
4013
4078
  /**
4014
4079
  *
4015
4080
  * @summary 勘探工单详情
@@ -5054,6 +5119,20 @@ export interface WorkOrderApiWorkOrderDistributeLeafletsRequest {
5054
5119
  readonly workOrderDistributeLeafletsVo: WorkOrderDistributeLeafletsVo
5055
5120
  }
5056
5121
 
5122
+ /**
5123
+ * Request parameters for workOrderExplorationAdd operation in WorkOrderApi.
5124
+ * @export
5125
+ * @interface WorkOrderApiWorkOrderExplorationAddRequest
5126
+ */
5127
+ export interface WorkOrderApiWorkOrderExplorationAddRequest {
5128
+ /**
5129
+ *
5130
+ * @type {ExplorationWorkOrderAddVo}
5131
+ * @memberof WorkOrderApiWorkOrderExplorationAdd
5132
+ */
5133
+ readonly explorationWorkOrderAddVo: ExplorationWorkOrderAddVo
5134
+ }
5135
+
5057
5136
  /**
5058
5137
  * Request parameters for workOrderExplorationDetails operation in WorkOrderApi.
5059
5138
  * @export
@@ -5986,6 +6065,18 @@ export class WorkOrderApi extends BaseAPI {
5986
6065
  return WorkOrderApiFp(this.configuration).workOrderDistributeLeaflets(requestParameters.workOrderDistributeLeafletsVo, options).then((request) => request(this.axios, this.basePath));
5987
6066
  }
5988
6067
 
6068
+ /**
6069
+ *
6070
+ * @summary 新增勘探工单
6071
+ * @param {WorkOrderApiWorkOrderExplorationAddRequest} requestParameters Request parameters.
6072
+ * @param {*} [options] Override http request option.
6073
+ * @throws {RequiredError}
6074
+ * @memberof WorkOrderApi
6075
+ */
6076
+ public workOrderExplorationAdd(requestParameters: WorkOrderApiWorkOrderExplorationAddRequest, options?: RawAxiosRequestConfig) {
6077
+ return WorkOrderApiFp(this.configuration).workOrderExplorationAdd(requestParameters.explorationWorkOrderAddVo, options).then((request) => request(this.axios, this.basePath));
6078
+ }
6079
+
5989
6080
  /**
5990
6081
  *
5991
6082
  * @summary 勘探工单详情
@@ -12,6 +12,7 @@
12
12
  import type { Configuration } from '../configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import { type RequestArgs, BaseAPI } from '../base';
15
+ import type { ExplorationWorkOrderAddVo } from '../models';
15
16
  import type { InspectionCompleteVO } from '../models';
16
17
  import type { InspectionHandleReq } from '../models';
17
18
  import type { JsonResult } from '../models';
@@ -393,6 +394,14 @@ export declare const WorkOrderApiAxiosParamCreator: (configuration?: Configurati
393
394
  * @throws {RequiredError}
394
395
  */
395
396
  workOrderDistributeLeaflets: (workOrderDistributeLeafletsVo: WorkOrderDistributeLeafletsVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
397
+ /**
398
+ *
399
+ * @summary 新增勘探工单
400
+ * @param {ExplorationWorkOrderAddVo} explorationWorkOrderAddVo
401
+ * @param {*} [options] Override http request option.
402
+ * @throws {RequiredError}
403
+ */
404
+ workOrderExplorationAdd: (explorationWorkOrderAddVo: ExplorationWorkOrderAddVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
396
405
  /**
397
406
  *
398
407
  * @summary 勘探工单详情
@@ -941,6 +950,14 @@ export declare const WorkOrderApiFp: (configuration?: Configuration) => {
941
950
  * @throws {RequiredError}
942
951
  */
943
952
  workOrderDistributeLeaflets(workOrderDistributeLeafletsVo: WorkOrderDistributeLeafletsVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
953
+ /**
954
+ *
955
+ * @summary 新增勘探工单
956
+ * @param {ExplorationWorkOrderAddVo} explorationWorkOrderAddVo
957
+ * @param {*} [options] Override http request option.
958
+ * @throws {RequiredError}
959
+ */
960
+ workOrderExplorationAdd(explorationWorkOrderAddVo: ExplorationWorkOrderAddVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultInteger>>;
944
961
  /**
945
962
  *
946
963
  * @summary 勘探工单详情
@@ -1442,6 +1459,14 @@ export declare const WorkOrderApiFactory: (configuration?: Configuration, basePa
1442
1459
  * @throws {RequiredError}
1443
1460
  */
1444
1461
  workOrderDistributeLeaflets(requestParameters: WorkOrderApiWorkOrderDistributeLeafletsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
1462
+ /**
1463
+ *
1464
+ * @summary 新增勘探工单
1465
+ * @param {WorkOrderApiWorkOrderExplorationAddRequest} requestParameters Request parameters.
1466
+ * @param {*} [options] Override http request option.
1467
+ * @throws {RequiredError}
1468
+ */
1469
+ workOrderExplorationAdd(requestParameters: WorkOrderApiWorkOrderExplorationAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultInteger>;
1445
1470
  /**
1446
1471
  *
1447
1472
  * @summary 勘探工单详情
@@ -2354,6 +2379,19 @@ export interface WorkOrderApiWorkOrderDistributeLeafletsRequest {
2354
2379
  */
2355
2380
  readonly workOrderDistributeLeafletsVo: WorkOrderDistributeLeafletsVo;
2356
2381
  }
2382
+ /**
2383
+ * Request parameters for workOrderExplorationAdd operation in WorkOrderApi.
2384
+ * @export
2385
+ * @interface WorkOrderApiWorkOrderExplorationAddRequest
2386
+ */
2387
+ export interface WorkOrderApiWorkOrderExplorationAddRequest {
2388
+ /**
2389
+ *
2390
+ * @type {ExplorationWorkOrderAddVo}
2391
+ * @memberof WorkOrderApiWorkOrderExplorationAdd
2392
+ */
2393
+ readonly explorationWorkOrderAddVo: ExplorationWorkOrderAddVo;
2394
+ }
2357
2395
  /**
2358
2396
  * Request parameters for workOrderExplorationDetails operation in WorkOrderApi.
2359
2397
  * @export
@@ -3135,6 +3173,15 @@ export declare class WorkOrderApi extends BaseAPI {
3135
3173
  * @memberof WorkOrderApi
3136
3174
  */
3137
3175
  workOrderDistributeLeaflets(requestParameters: WorkOrderApiWorkOrderDistributeLeafletsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
3176
+ /**
3177
+ *
3178
+ * @summary 新增勘探工单
3179
+ * @param {WorkOrderApiWorkOrderExplorationAddRequest} requestParameters Request parameters.
3180
+ * @param {*} [options] Override http request option.
3181
+ * @throws {RequiredError}
3182
+ * @memberof WorkOrderApi
3183
+ */
3184
+ workOrderExplorationAdd(requestParameters: WorkOrderApiWorkOrderExplorationAddRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultInteger, any>>;
3138
3185
  /**
3139
3186
  *
3140
3187
  * @summary 勘探工单详情
@@ -1350,6 +1350,39 @@ const WorkOrderApiAxiosParamCreator = function (configuration) {
1350
1350
  options: localVarRequestOptions,
1351
1351
  };
1352
1352
  }),
1353
+ /**
1354
+ *
1355
+ * @summary 新增勘探工单
1356
+ * @param {ExplorationWorkOrderAddVo} explorationWorkOrderAddVo
1357
+ * @param {*} [options] Override http request option.
1358
+ * @throws {RequiredError}
1359
+ */
1360
+ workOrderExplorationAdd: (explorationWorkOrderAddVo_1, ...args_1) => __awaiter(this, [explorationWorkOrderAddVo_1, ...args_1], void 0, function* (explorationWorkOrderAddVo, options = {}) {
1361
+ // verify required parameter 'explorationWorkOrderAddVo' is not null or undefined
1362
+ (0, common_1.assertParamExists)('workOrderExplorationAdd', 'explorationWorkOrderAddVo', explorationWorkOrderAddVo);
1363
+ const localVarPath = `/gizone/workorder/exploration`;
1364
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1365
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1366
+ let baseOptions;
1367
+ if (configuration) {
1368
+ baseOptions = configuration.baseOptions;
1369
+ }
1370
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1371
+ const localVarHeaderParameter = {};
1372
+ const localVarQueryParameter = {};
1373
+ // authentication tokenScheme required
1374
+ // http bearer authentication required
1375
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
1376
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1377
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1378
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1379
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1380
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(explorationWorkOrderAddVo, localVarRequestOptions, configuration);
1381
+ return {
1382
+ url: (0, common_1.toPathString)(localVarUrlObj),
1383
+ options: localVarRequestOptions,
1384
+ };
1385
+ }),
1353
1386
  /**
1354
1387
  *
1355
1388
  * @summary 勘探工单详情
@@ -2860,6 +2893,22 @@ const WorkOrderApiFp = function (configuration) {
2860
2893
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2861
2894
  });
2862
2895
  },
2896
+ /**
2897
+ *
2898
+ * @summary 新增勘探工单
2899
+ * @param {ExplorationWorkOrderAddVo} explorationWorkOrderAddVo
2900
+ * @param {*} [options] Override http request option.
2901
+ * @throws {RequiredError}
2902
+ */
2903
+ workOrderExplorationAdd(explorationWorkOrderAddVo, options) {
2904
+ return __awaiter(this, void 0, void 0, function* () {
2905
+ var _a, _b, _c;
2906
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.workOrderExplorationAdd(explorationWorkOrderAddVo, options);
2907
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2908
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['WorkOrderApi.workOrderExplorationAdd']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2909
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2910
+ });
2911
+ },
2863
2912
  /**
2864
2913
  *
2865
2914
  * @summary 勘探工单详情
@@ -3633,6 +3682,16 @@ const WorkOrderApiFactory = function (configuration, basePath, axios) {
3633
3682
  workOrderDistributeLeaflets(requestParameters, options) {
3634
3683
  return localVarFp.workOrderDistributeLeaflets(requestParameters.workOrderDistributeLeafletsVo, options).then((request) => request(axios, basePath));
3635
3684
  },
3685
+ /**
3686
+ *
3687
+ * @summary 新增勘探工单
3688
+ * @param {WorkOrderApiWorkOrderExplorationAddRequest} requestParameters Request parameters.
3689
+ * @param {*} [options] Override http request option.
3690
+ * @throws {RequiredError}
3691
+ */
3692
+ workOrderExplorationAdd(requestParameters, options) {
3693
+ return localVarFp.workOrderExplorationAdd(requestParameters.explorationWorkOrderAddVo, options).then((request) => request(axios, basePath));
3694
+ },
3636
3695
  /**
3637
3696
  *
3638
3697
  * @summary 勘探工单详情
@@ -4266,6 +4325,17 @@ class WorkOrderApi extends base_1.BaseAPI {
4266
4325
  workOrderDistributeLeaflets(requestParameters, options) {
4267
4326
  return (0, exports.WorkOrderApiFp)(this.configuration).workOrderDistributeLeaflets(requestParameters.workOrderDistributeLeafletsVo, options).then((request) => request(this.axios, this.basePath));
4268
4327
  }
4328
+ /**
4329
+ *
4330
+ * @summary 新增勘探工单
4331
+ * @param {WorkOrderApiWorkOrderExplorationAddRequest} requestParameters Request parameters.
4332
+ * @param {*} [options] Override http request option.
4333
+ * @throws {RequiredError}
4334
+ * @memberof WorkOrderApi
4335
+ */
4336
+ workOrderExplorationAdd(requestParameters, options) {
4337
+ return (0, exports.WorkOrderApiFp)(this.configuration).workOrderExplorationAdd(requestParameters.explorationWorkOrderAddVo, options).then((request) => request(this.axios, this.basePath));
4338
+ }
4269
4339
  /**
4270
4340
  *
4271
4341
  * @summary 勘探工单详情
@@ -12,6 +12,7 @@
12
12
  import type { Configuration } from '../configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import { type RequestArgs, BaseAPI } from '../base';
15
+ import type { ExplorationWorkOrderAddVo } from '../models';
15
16
  import type { InspectionCompleteVO } from '../models';
16
17
  import type { InspectionHandleReq } from '../models';
17
18
  import type { JsonResult } from '../models';
@@ -393,6 +394,14 @@ export declare const WorkOrderApiAxiosParamCreator: (configuration?: Configurati
393
394
  * @throws {RequiredError}
394
395
  */
395
396
  workOrderDistributeLeaflets: (workOrderDistributeLeafletsVo: WorkOrderDistributeLeafletsVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
397
+ /**
398
+ *
399
+ * @summary 新增勘探工单
400
+ * @param {ExplorationWorkOrderAddVo} explorationWorkOrderAddVo
401
+ * @param {*} [options] Override http request option.
402
+ * @throws {RequiredError}
403
+ */
404
+ workOrderExplorationAdd: (explorationWorkOrderAddVo: ExplorationWorkOrderAddVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
396
405
  /**
397
406
  *
398
407
  * @summary 勘探工单详情
@@ -941,6 +950,14 @@ export declare const WorkOrderApiFp: (configuration?: Configuration) => {
941
950
  * @throws {RequiredError}
942
951
  */
943
952
  workOrderDistributeLeaflets(workOrderDistributeLeafletsVo: WorkOrderDistributeLeafletsVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
953
+ /**
954
+ *
955
+ * @summary 新增勘探工单
956
+ * @param {ExplorationWorkOrderAddVo} explorationWorkOrderAddVo
957
+ * @param {*} [options] Override http request option.
958
+ * @throws {RequiredError}
959
+ */
960
+ workOrderExplorationAdd(explorationWorkOrderAddVo: ExplorationWorkOrderAddVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultInteger>>;
944
961
  /**
945
962
  *
946
963
  * @summary 勘探工单详情
@@ -1442,6 +1459,14 @@ export declare const WorkOrderApiFactory: (configuration?: Configuration, basePa
1442
1459
  * @throws {RequiredError}
1443
1460
  */
1444
1461
  workOrderDistributeLeaflets(requestParameters: WorkOrderApiWorkOrderDistributeLeafletsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
1462
+ /**
1463
+ *
1464
+ * @summary 新增勘探工单
1465
+ * @param {WorkOrderApiWorkOrderExplorationAddRequest} requestParameters Request parameters.
1466
+ * @param {*} [options] Override http request option.
1467
+ * @throws {RequiredError}
1468
+ */
1469
+ workOrderExplorationAdd(requestParameters: WorkOrderApiWorkOrderExplorationAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultInteger>;
1445
1470
  /**
1446
1471
  *
1447
1472
  * @summary 勘探工单详情
@@ -2354,6 +2379,19 @@ export interface WorkOrderApiWorkOrderDistributeLeafletsRequest {
2354
2379
  */
2355
2380
  readonly workOrderDistributeLeafletsVo: WorkOrderDistributeLeafletsVo;
2356
2381
  }
2382
+ /**
2383
+ * Request parameters for workOrderExplorationAdd operation in WorkOrderApi.
2384
+ * @export
2385
+ * @interface WorkOrderApiWorkOrderExplorationAddRequest
2386
+ */
2387
+ export interface WorkOrderApiWorkOrderExplorationAddRequest {
2388
+ /**
2389
+ *
2390
+ * @type {ExplorationWorkOrderAddVo}
2391
+ * @memberof WorkOrderApiWorkOrderExplorationAdd
2392
+ */
2393
+ readonly explorationWorkOrderAddVo: ExplorationWorkOrderAddVo;
2394
+ }
2357
2395
  /**
2358
2396
  * Request parameters for workOrderExplorationDetails operation in WorkOrderApi.
2359
2397
  * @export
@@ -3135,6 +3173,15 @@ export declare class WorkOrderApi extends BaseAPI {
3135
3173
  * @memberof WorkOrderApi
3136
3174
  */
3137
3175
  workOrderDistributeLeaflets(requestParameters: WorkOrderApiWorkOrderDistributeLeafletsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
3176
+ /**
3177
+ *
3178
+ * @summary 新增勘探工单
3179
+ * @param {WorkOrderApiWorkOrderExplorationAddRequest} requestParameters Request parameters.
3180
+ * @param {*} [options] Override http request option.
3181
+ * @throws {RequiredError}
3182
+ * @memberof WorkOrderApi
3183
+ */
3184
+ workOrderExplorationAdd(requestParameters: WorkOrderApiWorkOrderExplorationAddRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultInteger, any>>;
3138
3185
  /**
3139
3186
  *
3140
3187
  * @summary 勘探工单详情
@@ -1347,6 +1347,39 @@ export const WorkOrderApiAxiosParamCreator = function (configuration) {
1347
1347
  options: localVarRequestOptions,
1348
1348
  };
1349
1349
  }),
1350
+ /**
1351
+ *
1352
+ * @summary 新增勘探工单
1353
+ * @param {ExplorationWorkOrderAddVo} explorationWorkOrderAddVo
1354
+ * @param {*} [options] Override http request option.
1355
+ * @throws {RequiredError}
1356
+ */
1357
+ workOrderExplorationAdd: (explorationWorkOrderAddVo_1, ...args_1) => __awaiter(this, [explorationWorkOrderAddVo_1, ...args_1], void 0, function* (explorationWorkOrderAddVo, options = {}) {
1358
+ // verify required parameter 'explorationWorkOrderAddVo' is not null or undefined
1359
+ assertParamExists('workOrderExplorationAdd', 'explorationWorkOrderAddVo', explorationWorkOrderAddVo);
1360
+ const localVarPath = `/gizone/workorder/exploration`;
1361
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1362
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1363
+ let baseOptions;
1364
+ if (configuration) {
1365
+ baseOptions = configuration.baseOptions;
1366
+ }
1367
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1368
+ const localVarHeaderParameter = {};
1369
+ const localVarQueryParameter = {};
1370
+ // authentication tokenScheme required
1371
+ // http bearer authentication required
1372
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1373
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1374
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1375
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1376
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1377
+ localVarRequestOptions.data = serializeDataIfNeeded(explorationWorkOrderAddVo, localVarRequestOptions, configuration);
1378
+ return {
1379
+ url: toPathString(localVarUrlObj),
1380
+ options: localVarRequestOptions,
1381
+ };
1382
+ }),
1350
1383
  /**
1351
1384
  *
1352
1385
  * @summary 勘探工单详情
@@ -2856,6 +2889,22 @@ export const WorkOrderApiFp = function (configuration) {
2856
2889
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2857
2890
  });
2858
2891
  },
2892
+ /**
2893
+ *
2894
+ * @summary 新增勘探工单
2895
+ * @param {ExplorationWorkOrderAddVo} explorationWorkOrderAddVo
2896
+ * @param {*} [options] Override http request option.
2897
+ * @throws {RequiredError}
2898
+ */
2899
+ workOrderExplorationAdd(explorationWorkOrderAddVo, options) {
2900
+ return __awaiter(this, void 0, void 0, function* () {
2901
+ var _a, _b, _c;
2902
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.workOrderExplorationAdd(explorationWorkOrderAddVo, options);
2903
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2904
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['WorkOrderApi.workOrderExplorationAdd']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2905
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2906
+ });
2907
+ },
2859
2908
  /**
2860
2909
  *
2861
2910
  * @summary 勘探工单详情
@@ -3628,6 +3677,16 @@ export const WorkOrderApiFactory = function (configuration, basePath, axios) {
3628
3677
  workOrderDistributeLeaflets(requestParameters, options) {
3629
3678
  return localVarFp.workOrderDistributeLeaflets(requestParameters.workOrderDistributeLeafletsVo, options).then((request) => request(axios, basePath));
3630
3679
  },
3680
+ /**
3681
+ *
3682
+ * @summary 新增勘探工单
3683
+ * @param {WorkOrderApiWorkOrderExplorationAddRequest} requestParameters Request parameters.
3684
+ * @param {*} [options] Override http request option.
3685
+ * @throws {RequiredError}
3686
+ */
3687
+ workOrderExplorationAdd(requestParameters, options) {
3688
+ return localVarFp.workOrderExplorationAdd(requestParameters.explorationWorkOrderAddVo, options).then((request) => request(axios, basePath));
3689
+ },
3631
3690
  /**
3632
3691
  *
3633
3692
  * @summary 勘探工单详情
@@ -4260,6 +4319,17 @@ export class WorkOrderApi extends BaseAPI {
4260
4319
  workOrderDistributeLeaflets(requestParameters, options) {
4261
4320
  return WorkOrderApiFp(this.configuration).workOrderDistributeLeaflets(requestParameters.workOrderDistributeLeafletsVo, options).then((request) => request(this.axios, this.basePath));
4262
4321
  }
4322
+ /**
4323
+ *
4324
+ * @summary 新增勘探工单
4325
+ * @param {WorkOrderApiWorkOrderExplorationAddRequest} requestParameters Request parameters.
4326
+ * @param {*} [options] Override http request option.
4327
+ * @throws {RequiredError}
4328
+ * @memberof WorkOrderApi
4329
+ */
4330
+ workOrderExplorationAdd(requestParameters, options) {
4331
+ return WorkOrderApiFp(this.configuration).workOrderExplorationAdd(requestParameters.explorationWorkOrderAddVo, options).then((request) => request(this.axios, this.basePath));
4332
+ }
4263
4333
  /**
4264
4334
  *
4265
4335
  * @summary 勘探工单详情
@@ -0,0 +1,123 @@
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
+ import type { ExplorationWorkOrderTypeEnum } from './exploration-work-order-type-enum';
13
+ import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
14
+ /**
15
+ * 新增勘探工单
16
+ * @export
17
+ * @interface ExplorationWorkOrderAddVo
18
+ */
19
+ export interface ExplorationWorkOrderAddVo {
20
+ /**
21
+ * 园区ID
22
+ * @type {number}
23
+ * @memberof ExplorationWorkOrderAddVo
24
+ */
25
+ 'parkId'?: number;
26
+ /**
27
+ * 保险单号
28
+ * @type {string}
29
+ * @memberof ExplorationWorkOrderAddVo
30
+ */
31
+ 'insuranceNo'?: string;
32
+ /**
33
+ * 问题单号
34
+ * @type {string}
35
+ * @memberof ExplorationWorkOrderAddVo
36
+ */
37
+ 'issueNo'?: string;
38
+ /**
39
+ *
40
+ * @type {ExplorationWorkOrderTypeEnum}
41
+ * @memberof ExplorationWorkOrderAddVo
42
+ */
43
+ 'explorationType': ExplorationWorkOrderTypeEnum;
44
+ /**
45
+ * 问题时间
46
+ * @type {string}
47
+ * @memberof ExplorationWorkOrderAddVo
48
+ */
49
+ 'issueTime'?: string;
50
+ /**
51
+ *
52
+ * @type {WorkOrderIssueTypeEnum}
53
+ * @memberof ExplorationWorkOrderAddVo
54
+ */
55
+ 'issueType': WorkOrderIssueTypeEnum;
56
+ /**
57
+ * 问题描述
58
+ * @type {string}
59
+ * @memberof ExplorationWorkOrderAddVo
60
+ */
61
+ 'issueDesc': string;
62
+ /**
63
+ * 问题设备ID
64
+ * @type {number}
65
+ * @memberof ExplorationWorkOrderAddVo
66
+ */
67
+ 'issueEquipmentId': number;
68
+ /**
69
+ * 问题空间ID
70
+ * @type {number}
71
+ * @memberof ExplorationWorkOrderAddVo
72
+ */
73
+ 'issueSpaceId': number;
74
+ /**
75
+ * 风险类别
76
+ * @type {string}
77
+ * @memberof ExplorationWorkOrderAddVo
78
+ */
79
+ 'riskCategory'?: string;
80
+ /**
81
+ * 勘探隐患等级
82
+ * @type {string}
83
+ * @memberof ExplorationWorkOrderAddVo
84
+ */
85
+ 'hazardLevel': ExplorationWorkOrderAddVoHazardLevelEnum;
86
+ /**
87
+ * 要求整改时间
88
+ * @type {string}
89
+ * @memberof ExplorationWorkOrderAddVo
90
+ */
91
+ 'rectificationTime'?: string;
92
+ /**
93
+ * 隐患照片
94
+ * @type {Array<string>}
95
+ * @memberof ExplorationWorkOrderAddVo
96
+ */
97
+ 'hazardPhotoUrls': Array<string>;
98
+ /**
99
+ * 预计执行时间(分钟)
100
+ * @type {number}
101
+ * @memberof ExplorationWorkOrderAddVo
102
+ */
103
+ 'estimateExecutionTime'?: number;
104
+ /**
105
+ * 执行部门
106
+ * @type {Array<number>}
107
+ * @memberof ExplorationWorkOrderAddVo
108
+ */
109
+ 'deptIds': Array<number>;
110
+ /**
111
+ * 执行人
112
+ * @type {number}
113
+ * @memberof ExplorationWorkOrderAddVo
114
+ */
115
+ 'handlerUserId'?: number;
116
+ }
117
+ export declare const ExplorationWorkOrderAddVoHazardLevelEnum: {
118
+ readonly A: "A";
119
+ readonly B: "B";
120
+ readonly C: "C";
121
+ readonly D: "D";
122
+ };
123
+ export type ExplorationWorkOrderAddVoHazardLevelEnum = typeof ExplorationWorkOrderAddVoHazardLevelEnum[keyof typeof ExplorationWorkOrderAddVoHazardLevelEnum];
@@ -0,0 +1,19 @@
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
+ export const ExplorationWorkOrderAddVoHazardLevelEnum = {
15
+ A: 'A',
16
+ B: 'B',
17
+ C: 'C',
18
+ D: 'D'
19
+ };
@@ -115,6 +115,7 @@ export * from './excel-import-result-dtomaintenance-standard-import-dto';
115
115
  export * from './excel-import-result-dtosurveillance-batch-import-template-dto';
116
116
  export * from './excel-import-result-dtosurveillance-settings-export-dto';
117
117
  export * from './excel-import-upload-to-redis-vo-space-add-excel-dto';
118
+ export * from './exploration-work-order-add-vo';
118
119
  export * from './exploration-work-order-details-dto';
119
120
  export * from './exploration-work-order-info';
120
121
  export * from './exploration-work-order-submit-vo';
@@ -115,6 +115,7 @@ export * from './excel-import-result-dtomaintenance-standard-import-dto';
115
115
  export * from './excel-import-result-dtosurveillance-batch-import-template-dto';
116
116
  export * from './excel-import-result-dtosurveillance-settings-export-dto';
117
117
  export * from './excel-import-upload-to-redis-vo-space-add-excel-dto';
118
+ export * from './exploration-work-order-add-vo';
118
119
  export * from './exploration-work-order-details-dto';
119
120
  export * from './exploration-work-order-info';
120
121
  export * from './exploration-work-order-submit-vo';
@@ -377,14 +377,14 @@ export interface SysUser {
377
377
  'sourceUserId'?: string;
378
378
  /**
379
379
  *
380
- * @type {number}
380
+ * @type {string}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cuserId'?: number;
383
+ 'cid'?: string;
384
384
  /**
385
385
  *
386
- * @type {string}
386
+ * @type {number}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cid'?: string;
389
+ 'cuserId'?: number;
390
390
  }
@@ -0,0 +1,123 @@
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
+ import type { ExplorationWorkOrderTypeEnum } from './exploration-work-order-type-enum';
13
+ import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
14
+ /**
15
+ * 新增勘探工单
16
+ * @export
17
+ * @interface ExplorationWorkOrderAddVo
18
+ */
19
+ export interface ExplorationWorkOrderAddVo {
20
+ /**
21
+ * 园区ID
22
+ * @type {number}
23
+ * @memberof ExplorationWorkOrderAddVo
24
+ */
25
+ 'parkId'?: number;
26
+ /**
27
+ * 保险单号
28
+ * @type {string}
29
+ * @memberof ExplorationWorkOrderAddVo
30
+ */
31
+ 'insuranceNo'?: string;
32
+ /**
33
+ * 问题单号
34
+ * @type {string}
35
+ * @memberof ExplorationWorkOrderAddVo
36
+ */
37
+ 'issueNo'?: string;
38
+ /**
39
+ *
40
+ * @type {ExplorationWorkOrderTypeEnum}
41
+ * @memberof ExplorationWorkOrderAddVo
42
+ */
43
+ 'explorationType': ExplorationWorkOrderTypeEnum;
44
+ /**
45
+ * 问题时间
46
+ * @type {string}
47
+ * @memberof ExplorationWorkOrderAddVo
48
+ */
49
+ 'issueTime'?: string;
50
+ /**
51
+ *
52
+ * @type {WorkOrderIssueTypeEnum}
53
+ * @memberof ExplorationWorkOrderAddVo
54
+ */
55
+ 'issueType': WorkOrderIssueTypeEnum;
56
+ /**
57
+ * 问题描述
58
+ * @type {string}
59
+ * @memberof ExplorationWorkOrderAddVo
60
+ */
61
+ 'issueDesc': string;
62
+ /**
63
+ * 问题设备ID
64
+ * @type {number}
65
+ * @memberof ExplorationWorkOrderAddVo
66
+ */
67
+ 'issueEquipmentId': number;
68
+ /**
69
+ * 问题空间ID
70
+ * @type {number}
71
+ * @memberof ExplorationWorkOrderAddVo
72
+ */
73
+ 'issueSpaceId': number;
74
+ /**
75
+ * 风险类别
76
+ * @type {string}
77
+ * @memberof ExplorationWorkOrderAddVo
78
+ */
79
+ 'riskCategory'?: string;
80
+ /**
81
+ * 勘探隐患等级
82
+ * @type {string}
83
+ * @memberof ExplorationWorkOrderAddVo
84
+ */
85
+ 'hazardLevel': ExplorationWorkOrderAddVoHazardLevelEnum;
86
+ /**
87
+ * 要求整改时间
88
+ * @type {string}
89
+ * @memberof ExplorationWorkOrderAddVo
90
+ */
91
+ 'rectificationTime'?: string;
92
+ /**
93
+ * 隐患照片
94
+ * @type {Array<string>}
95
+ * @memberof ExplorationWorkOrderAddVo
96
+ */
97
+ 'hazardPhotoUrls': Array<string>;
98
+ /**
99
+ * 预计执行时间(分钟)
100
+ * @type {number}
101
+ * @memberof ExplorationWorkOrderAddVo
102
+ */
103
+ 'estimateExecutionTime'?: number;
104
+ /**
105
+ * 执行部门
106
+ * @type {Array<number>}
107
+ * @memberof ExplorationWorkOrderAddVo
108
+ */
109
+ 'deptIds': Array<number>;
110
+ /**
111
+ * 执行人
112
+ * @type {number}
113
+ * @memberof ExplorationWorkOrderAddVo
114
+ */
115
+ 'handlerUserId'?: number;
116
+ }
117
+ export declare const ExplorationWorkOrderAddVoHazardLevelEnum: {
118
+ readonly A: "A";
119
+ readonly B: "B";
120
+ readonly C: "C";
121
+ readonly D: "D";
122
+ };
123
+ export type ExplorationWorkOrderAddVoHazardLevelEnum = typeof ExplorationWorkOrderAddVoHazardLevelEnum[keyof typeof ExplorationWorkOrderAddVoHazardLevelEnum];
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.ExplorationWorkOrderAddVoHazardLevelEnum = void 0;
17
+ exports.ExplorationWorkOrderAddVoHazardLevelEnum = {
18
+ A: 'A',
19
+ B: 'B',
20
+ C: 'C',
21
+ D: 'D'
22
+ };
@@ -115,6 +115,7 @@ export * from './excel-import-result-dtomaintenance-standard-import-dto';
115
115
  export * from './excel-import-result-dtosurveillance-batch-import-template-dto';
116
116
  export * from './excel-import-result-dtosurveillance-settings-export-dto';
117
117
  export * from './excel-import-upload-to-redis-vo-space-add-excel-dto';
118
+ export * from './exploration-work-order-add-vo';
118
119
  export * from './exploration-work-order-details-dto';
119
120
  export * from './exploration-work-order-info';
120
121
  export * from './exploration-work-order-submit-vo';
@@ -131,6 +131,7 @@ __exportStar(require("./excel-import-result-dtomaintenance-standard-import-dto")
131
131
  __exportStar(require("./excel-import-result-dtosurveillance-batch-import-template-dto"), exports);
132
132
  __exportStar(require("./excel-import-result-dtosurveillance-settings-export-dto"), exports);
133
133
  __exportStar(require("./excel-import-upload-to-redis-vo-space-add-excel-dto"), exports);
134
+ __exportStar(require("./exploration-work-order-add-vo"), exports);
134
135
  __exportStar(require("./exploration-work-order-details-dto"), exports);
135
136
  __exportStar(require("./exploration-work-order-info"), exports);
136
137
  __exportStar(require("./exploration-work-order-submit-vo"), exports);
@@ -377,14 +377,14 @@ export interface SysUser {
377
377
  'sourceUserId'?: string;
378
378
  /**
379
379
  *
380
- * @type {number}
380
+ * @type {string}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cuserId'?: number;
383
+ 'cid'?: string;
384
384
  /**
385
385
  *
386
- * @type {string}
386
+ * @type {number}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cid'?: string;
389
+ 'cuserId'?: number;
390
390
  }
@@ -0,0 +1,136 @@
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { ExplorationWorkOrderTypeEnum } from './exploration-work-order-type-enum';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
22
+
23
+ /**
24
+ * 新增勘探工单
25
+ * @export
26
+ * @interface ExplorationWorkOrderAddVo
27
+ */
28
+ export interface ExplorationWorkOrderAddVo {
29
+ /**
30
+ * 园区ID
31
+ * @type {number}
32
+ * @memberof ExplorationWorkOrderAddVo
33
+ */
34
+ 'parkId'?: number;
35
+ /**
36
+ * 保险单号
37
+ * @type {string}
38
+ * @memberof ExplorationWorkOrderAddVo
39
+ */
40
+ 'insuranceNo'?: string;
41
+ /**
42
+ * 问题单号
43
+ * @type {string}
44
+ * @memberof ExplorationWorkOrderAddVo
45
+ */
46
+ 'issueNo'?: string;
47
+ /**
48
+ *
49
+ * @type {ExplorationWorkOrderTypeEnum}
50
+ * @memberof ExplorationWorkOrderAddVo
51
+ */
52
+ 'explorationType': ExplorationWorkOrderTypeEnum;
53
+ /**
54
+ * 问题时间
55
+ * @type {string}
56
+ * @memberof ExplorationWorkOrderAddVo
57
+ */
58
+ 'issueTime'?: string;
59
+ /**
60
+ *
61
+ * @type {WorkOrderIssueTypeEnum}
62
+ * @memberof ExplorationWorkOrderAddVo
63
+ */
64
+ 'issueType': WorkOrderIssueTypeEnum;
65
+ /**
66
+ * 问题描述
67
+ * @type {string}
68
+ * @memberof ExplorationWorkOrderAddVo
69
+ */
70
+ 'issueDesc': string;
71
+ /**
72
+ * 问题设备ID
73
+ * @type {number}
74
+ * @memberof ExplorationWorkOrderAddVo
75
+ */
76
+ 'issueEquipmentId': number;
77
+ /**
78
+ * 问题空间ID
79
+ * @type {number}
80
+ * @memberof ExplorationWorkOrderAddVo
81
+ */
82
+ 'issueSpaceId': number;
83
+ /**
84
+ * 风险类别
85
+ * @type {string}
86
+ * @memberof ExplorationWorkOrderAddVo
87
+ */
88
+ 'riskCategory'?: string;
89
+ /**
90
+ * 勘探隐患等级
91
+ * @type {string}
92
+ * @memberof ExplorationWorkOrderAddVo
93
+ */
94
+ 'hazardLevel': ExplorationWorkOrderAddVoHazardLevelEnum;
95
+ /**
96
+ * 要求整改时间
97
+ * @type {string}
98
+ * @memberof ExplorationWorkOrderAddVo
99
+ */
100
+ 'rectificationTime'?: string;
101
+ /**
102
+ * 隐患照片
103
+ * @type {Array<string>}
104
+ * @memberof ExplorationWorkOrderAddVo
105
+ */
106
+ 'hazardPhotoUrls': Array<string>;
107
+ /**
108
+ * 预计执行时间(分钟)
109
+ * @type {number}
110
+ * @memberof ExplorationWorkOrderAddVo
111
+ */
112
+ 'estimateExecutionTime'?: number;
113
+ /**
114
+ * 执行部门
115
+ * @type {Array<number>}
116
+ * @memberof ExplorationWorkOrderAddVo
117
+ */
118
+ 'deptIds': Array<number>;
119
+ /**
120
+ * 执行人
121
+ * @type {number}
122
+ * @memberof ExplorationWorkOrderAddVo
123
+ */
124
+ 'handlerUserId'?: number;
125
+ }
126
+
127
+ export const ExplorationWorkOrderAddVoHazardLevelEnum = {
128
+ A: 'A',
129
+ B: 'B',
130
+ C: 'C',
131
+ D: 'D'
132
+ } as const;
133
+
134
+ export type ExplorationWorkOrderAddVoHazardLevelEnum = typeof ExplorationWorkOrderAddVoHazardLevelEnum[keyof typeof ExplorationWorkOrderAddVoHazardLevelEnum];
135
+
136
+
package/models/index.ts CHANGED
@@ -115,6 +115,7 @@ export * from './excel-import-result-dtomaintenance-standard-import-dto';
115
115
  export * from './excel-import-result-dtosurveillance-batch-import-template-dto';
116
116
  export * from './excel-import-result-dtosurveillance-settings-export-dto';
117
117
  export * from './excel-import-upload-to-redis-vo-space-add-excel-dto';
118
+ export * from './exploration-work-order-add-vo';
118
119
  export * from './exploration-work-order-details-dto';
119
120
  export * from './exploration-work-order-info';
120
121
  export * from './exploration-work-order-submit-vo';
@@ -388,16 +388,16 @@ export interface SysUser {
388
388
  'sourceUserId'?: string;
389
389
  /**
390
390
  *
391
- * @type {number}
391
+ * @type {string}
392
392
  * @memberof SysUser
393
393
  */
394
- 'cuserId'?: number;
394
+ 'cid'?: string;
395
395
  /**
396
396
  *
397
- * @type {string}
397
+ * @type {number}
398
398
  * @memberof SysUser
399
399
  */
400
- 'cid'?: string;
400
+ 'cuserId'?: number;
401
401
  }
402
402
 
403
403
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.2.5-alpha.393",
3
+ "version": "4.2.5-alpha.395",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {