@gizone/rrs-client 4.2.0-alpha.270 → 4.2.0-alpha.272

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.
@@ -990,6 +990,7 @@ models/work-order-plan-repeats-enum.ts
990
990
  models/work-order-push-settings-entity.ts
991
991
  models/work-order-push-settings-save-or-update-vo.ts
992
992
  models/work-order-push-settings-vo.ts
993
+ models/work-order-reject-vo.ts
993
994
  models/work-order-report-vo.ts
994
995
  models/work-order-search-dto.ts
995
996
  models/work-order-settings-type-enum.ts
package/apis/space-api.ts CHANGED
@@ -140,6 +140,40 @@ export const SpaceApiAxiosParamCreator = function (configuration?: Configuration
140
140
  options: localVarRequestOptions,
141
141
  };
142
142
  },
143
+ /**
144
+ *
145
+ * @summary 批量导出空间
146
+ * @param {*} [options] Override http request option.
147
+ * @throws {RequiredError}
148
+ */
149
+ spaceBatchExport: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
150
+ const localVarPath = `/gizone/space/batchExport`;
151
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
152
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
153
+ let baseOptions;
154
+ if (configuration) {
155
+ baseOptions = configuration.baseOptions;
156
+ }
157
+
158
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
159
+ const localVarHeaderParameter = {} as any;
160
+ const localVarQueryParameter = {} as any;
161
+
162
+ // authentication tokenScheme required
163
+ // http bearer authentication required
164
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
165
+
166
+
167
+
168
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
169
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
170
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
171
+
172
+ return {
173
+ url: toPathString(localVarUrlObj),
174
+ options: localVarRequestOptions,
175
+ };
176
+ },
143
177
  /**
144
178
  *
145
179
  * @summary /新增---导入excel数据
@@ -903,6 +937,18 @@ export const SpaceApiFp = function(configuration?: Configuration) {
903
937
  const localVarOperationServerBasePath = operationServerMap['SpaceApi.spaceAdd']?.[localVarOperationServerIndex]?.url;
904
938
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
905
939
  },
940
+ /**
941
+ *
942
+ * @summary 批量导出空间
943
+ * @param {*} [options] Override http request option.
944
+ * @throws {RequiredError}
945
+ */
946
+ async spaceBatchExport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
947
+ const localVarAxiosArgs = await localVarAxiosParamCreator.spaceBatchExport(options);
948
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
949
+ const localVarOperationServerBasePath = operationServerMap['SpaceApi.spaceBatchExport']?.[localVarOperationServerIndex]?.url;
950
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
951
+ },
906
952
  /**
907
953
  *
908
954
  * @summary /新增---导入excel数据
@@ -1168,6 +1214,15 @@ export const SpaceApiFactory = function (configuration?: Configuration, basePath
1168
1214
  spaceAdd(requestParameters: SpaceApiSpaceAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
1169
1215
  return localVarFp.spaceAdd(requestParameters.spaceAddVO, options).then((request) => request(axios, basePath));
1170
1216
  },
1217
+ /**
1218
+ *
1219
+ * @summary 批量导出空间
1220
+ * @param {*} [options] Override http request option.
1221
+ * @throws {RequiredError}
1222
+ */
1223
+ spaceBatchExport(options?: RawAxiosRequestConfig): AxiosPromise<void> {
1224
+ return localVarFp.spaceBatchExport(options).then((request) => request(axios, basePath));
1225
+ },
1171
1226
  /**
1172
1227
  *
1173
1228
  * @summary /新增---导入excel数据
@@ -1661,6 +1716,17 @@ export class SpaceApi extends BaseAPI {
1661
1716
  return SpaceApiFp(this.configuration).spaceAdd(requestParameters.spaceAddVO, options).then((request) => request(this.axios, this.basePath));
1662
1717
  }
1663
1718
 
1719
+ /**
1720
+ *
1721
+ * @summary 批量导出空间
1722
+ * @param {*} [options] Override http request option.
1723
+ * @throws {RequiredError}
1724
+ * @memberof SpaceApi
1725
+ */
1726
+ public spaceBatchExport(options?: RawAxiosRequestConfig) {
1727
+ return SpaceApiFp(this.configuration).spaceBatchExport(options).then((request) => request(this.axios, this.basePath));
1728
+ }
1729
+
1664
1730
  /**
1665
1731
  *
1666
1732
  * @summary /新增---导入excel数据
@@ -112,6 +112,8 @@ import type { WorkOrderPlanRepeatsEnum } from '../models';
112
112
  // @ts-ignore
113
113
  import type { WorkOrderPushSettingsVO } from '../models';
114
114
  // @ts-ignore
115
+ import type { WorkOrderRejectVo } from '../models';
116
+ // @ts-ignore
115
117
  import type { WorkOrderReportVo } from '../models';
116
118
  // @ts-ignore
117
119
  import type { WorkOrderSpotCheckVo } from '../models';
@@ -2330,12 +2332,15 @@ export const WorkOrderApiAxiosParamCreator = function (configuration?: Configura
2330
2332
  *
2331
2333
  * @summary 工单驳回
2332
2334
  * @param {number} workOrderId
2335
+ * @param {WorkOrderRejectVo} workOrderRejectVo
2333
2336
  * @param {*} [options] Override http request option.
2334
2337
  * @throws {RequiredError}
2335
2338
  */
2336
- workOrderReject: async (workOrderId: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
2339
+ workOrderReject: async (workOrderId: number, workOrderRejectVo: WorkOrderRejectVo, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
2337
2340
  // verify required parameter 'workOrderId' is not null or undefined
2338
2341
  assertParamExists('workOrderReject', 'workOrderId', workOrderId)
2342
+ // verify required parameter 'workOrderRejectVo' is not null or undefined
2343
+ assertParamExists('workOrderReject', 'workOrderRejectVo', workOrderRejectVo)
2339
2344
  const localVarPath = `/gizone/workOrder/reject/{workOrderId}`
2340
2345
  .replace(`{${"workOrderId"}}`, encodeURIComponent(String(workOrderId)));
2341
2346
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -2355,9 +2360,12 @@ export const WorkOrderApiAxiosParamCreator = function (configuration?: Configura
2355
2360
 
2356
2361
 
2357
2362
 
2363
+ localVarHeaderParameter['Content-Type'] = 'application/json';
2364
+
2358
2365
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2359
2366
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2360
2367
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
2368
+ localVarRequestOptions.data = serializeDataIfNeeded(workOrderRejectVo, localVarRequestOptions, configuration)
2361
2369
 
2362
2370
  return {
2363
2371
  url: toPathString(localVarUrlObj),
@@ -3348,11 +3356,12 @@ export const WorkOrderApiFp = function(configuration?: Configuration) {
3348
3356
  *
3349
3357
  * @summary 工单驳回
3350
3358
  * @param {number} workOrderId
3359
+ * @param {WorkOrderRejectVo} workOrderRejectVo
3351
3360
  * @param {*} [options] Override http request option.
3352
3361
  * @throws {RequiredError}
3353
3362
  */
3354
- async workOrderReject(workOrderId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>> {
3355
- const localVarAxiosArgs = await localVarAxiosParamCreator.workOrderReject(workOrderId, options);
3363
+ async workOrderReject(workOrderId: number, workOrderRejectVo: WorkOrderRejectVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>> {
3364
+ const localVarAxiosArgs = await localVarAxiosParamCreator.workOrderReject(workOrderId, workOrderRejectVo, options);
3356
3365
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
3357
3366
  const localVarOperationServerBasePath = operationServerMap['WorkOrderApi.workOrderReject']?.[localVarOperationServerIndex]?.url;
3358
3367
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -3948,7 +3957,7 @@ export const WorkOrderApiFactory = function (configuration?: Configuration, base
3948
3957
  * @throws {RequiredError}
3949
3958
  */
3950
3959
  workOrderReject(requestParameters: WorkOrderApiWorkOrderRejectRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid> {
3951
- return localVarFp.workOrderReject(requestParameters.workOrderId, options).then((request) => request(axios, basePath));
3960
+ return localVarFp.workOrderReject(requestParameters.workOrderId, requestParameters.workOrderRejectVo, options).then((request) => request(axios, basePath));
3952
3961
  },
3953
3962
  /**
3954
3963
  *
@@ -5106,6 +5115,13 @@ export interface WorkOrderApiWorkOrderRejectRequest {
5106
5115
  * @memberof WorkOrderApiWorkOrderReject
5107
5116
  */
5108
5117
  readonly workOrderId: number
5118
+
5119
+ /**
5120
+ *
5121
+ * @type {WorkOrderRejectVo}
5122
+ * @memberof WorkOrderApiWorkOrderReject
5123
+ */
5124
+ readonly workOrderRejectVo: WorkOrderRejectVo
5109
5125
  }
5110
5126
 
5111
5127
  /**
@@ -5818,7 +5834,7 @@ export class WorkOrderApi extends BaseAPI {
5818
5834
  * @memberof WorkOrderApi
5819
5835
  */
5820
5836
  public workOrderReject(requestParameters: WorkOrderApiWorkOrderRejectRequest, options?: RawAxiosRequestConfig) {
5821
- return WorkOrderApiFp(this.configuration).workOrderReject(requestParameters.workOrderId, options).then((request) => request(this.axios, this.basePath));
5837
+ return WorkOrderApiFp(this.configuration).workOrderReject(requestParameters.workOrderId, requestParameters.workOrderRejectVo, options).then((request) => request(this.axios, this.basePath));
5822
5838
  }
5823
5839
 
5824
5840
  /**
@@ -49,6 +49,13 @@ export declare const SpaceApiAxiosParamCreator: (configuration?: Configuration)
49
49
  * @throws {RequiredError}
50
50
  */
51
51
  spaceAdd: (spaceAddVO: SpaceAddVO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
52
+ /**
53
+ *
54
+ * @summary 批量导出空间
55
+ * @param {*} [options] Override http request option.
56
+ * @throws {RequiredError}
57
+ */
58
+ spaceBatchExport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
52
59
  /**
53
60
  *
54
61
  * @summary /新增---导入excel数据
@@ -216,6 +223,13 @@ export declare const SpaceApiFp: (configuration?: Configuration) => {
216
223
  * @throws {RequiredError}
217
224
  */
218
225
  spaceAdd(spaceAddVO: SpaceAddVO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
226
+ /**
227
+ *
228
+ * @summary 批量导出空间
229
+ * @param {*} [options] Override http request option.
230
+ * @throws {RequiredError}
231
+ */
232
+ spaceBatchExport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
219
233
  /**
220
234
  *
221
235
  * @summary /新增---导入excel数据
@@ -383,6 +397,13 @@ export declare const SpaceApiFactory: (configuration?: Configuration, basePath?:
383
397
  * @throws {RequiredError}
384
398
  */
385
399
  spaceAdd(requestParameters: SpaceApiSpaceAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
400
+ /**
401
+ *
402
+ * @summary 批量导出空间
403
+ * @param {*} [options] Override http request option.
404
+ * @throws {RequiredError}
405
+ */
406
+ spaceBatchExport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
386
407
  /**
387
408
  *
388
409
  * @summary /新增---导入excel数据
@@ -811,6 +832,14 @@ export declare class SpaceApi extends BaseAPI {
811
832
  * @memberof SpaceApi
812
833
  */
813
834
  spaceAdd(requestParameters: SpaceApiSpaceAddRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
835
+ /**
836
+ *
837
+ * @summary 批量导出空间
838
+ * @param {*} [options] Override http request option.
839
+ * @throws {RequiredError}
840
+ * @memberof SpaceApi
841
+ */
842
+ spaceBatchExport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
814
843
  /**
815
844
  *
816
845
  * @summary /新增---导入excel数据
@@ -102,6 +102,34 @@ const SpaceApiAxiosParamCreator = function (configuration) {
102
102
  options: localVarRequestOptions,
103
103
  };
104
104
  }),
105
+ /**
106
+ *
107
+ * @summary 批量导出空间
108
+ * @param {*} [options] Override http request option.
109
+ * @throws {RequiredError}
110
+ */
111
+ spaceBatchExport: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
112
+ const localVarPath = `/gizone/space/batchExport`;
113
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
114
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
115
+ let baseOptions;
116
+ if (configuration) {
117
+ baseOptions = configuration.baseOptions;
118
+ }
119
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
120
+ const localVarHeaderParameter = {};
121
+ const localVarQueryParameter = {};
122
+ // authentication tokenScheme required
123
+ // http bearer authentication required
124
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
125
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
126
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
127
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
128
+ return {
129
+ url: (0, common_1.toPathString)(localVarUrlObj),
130
+ options: localVarRequestOptions,
131
+ };
132
+ }),
105
133
  /**
106
134
  *
107
135
  * @summary /新增---导入excel数据
@@ -746,6 +774,21 @@ const SpaceApiFp = function (configuration) {
746
774
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
747
775
  });
748
776
  },
777
+ /**
778
+ *
779
+ * @summary 批量导出空间
780
+ * @param {*} [options] Override http request option.
781
+ * @throws {RequiredError}
782
+ */
783
+ spaceBatchExport(options) {
784
+ return __awaiter(this, void 0, void 0, function* () {
785
+ var _a, _b, _c;
786
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.spaceBatchExport(options);
787
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
788
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SpaceApi.spaceBatchExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
789
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
790
+ });
791
+ },
749
792
  /**
750
793
  *
751
794
  * @summary /新增---导入excel数据
@@ -1065,6 +1108,15 @@ const SpaceApiFactory = function (configuration, basePath, axios) {
1065
1108
  spaceAdd(requestParameters, options) {
1066
1109
  return localVarFp.spaceAdd(requestParameters.spaceAddVO, options).then((request) => request(axios, basePath));
1067
1110
  },
1111
+ /**
1112
+ *
1113
+ * @summary 批量导出空间
1114
+ * @param {*} [options] Override http request option.
1115
+ * @throws {RequiredError}
1116
+ */
1117
+ spaceBatchExport(options) {
1118
+ return localVarFp.spaceBatchExport(options).then((request) => request(axios, basePath));
1119
+ },
1068
1120
  /**
1069
1121
  *
1070
1122
  * @summary /新增---导入excel数据
@@ -1276,6 +1328,16 @@ class SpaceApi extends base_1.BaseAPI {
1276
1328
  spaceAdd(requestParameters, options) {
1277
1329
  return (0, exports.SpaceApiFp)(this.configuration).spaceAdd(requestParameters.spaceAddVO, options).then((request) => request(this.axios, this.basePath));
1278
1330
  }
1331
+ /**
1332
+ *
1333
+ * @summary 批量导出空间
1334
+ * @param {*} [options] Override http request option.
1335
+ * @throws {RequiredError}
1336
+ * @memberof SpaceApi
1337
+ */
1338
+ spaceBatchExport(options) {
1339
+ return (0, exports.SpaceApiFp)(this.configuration).spaceBatchExport(options).then((request) => request(this.axios, this.basePath));
1340
+ }
1279
1341
  /**
1280
1342
  *
1281
1343
  * @summary /新增---导入excel数据
@@ -57,6 +57,7 @@ import type { WorkOrderDistributeLeafletsVo } from '../models';
57
57
  import type { WorkOrderHandleMeterReadingVo } from '../models';
58
58
  import type { WorkOrderPlanRepeatsEnum } from '../models';
59
59
  import type { WorkOrderPushSettingsVO } from '../models';
60
+ import type { WorkOrderRejectVo } from '../models';
60
61
  import type { WorkOrderReportVo } from '../models';
61
62
  import type { WorkOrderSpotCheckVo } from '../models';
62
63
  import type { WorkOrderStagingDataVo } from '../models';
@@ -516,10 +517,11 @@ export declare const WorkOrderApiAxiosParamCreator: (configuration?: Configurati
516
517
  *
517
518
  * @summary 工单驳回
518
519
  * @param {number} workOrderId
520
+ * @param {WorkOrderRejectVo} workOrderRejectVo
519
521
  * @param {*} [options] Override http request option.
520
522
  * @throws {RequiredError}
521
523
  */
522
- workOrderReject: (workOrderId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
524
+ workOrderReject: (workOrderId: number, workOrderRejectVo: WorkOrderRejectVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
523
525
  /**
524
526
  *
525
527
  * @summary 新建工单
@@ -1031,10 +1033,11 @@ export declare const WorkOrderApiFp: (configuration?: Configuration) => {
1031
1033
  *
1032
1034
  * @summary 工单驳回
1033
1035
  * @param {number} workOrderId
1036
+ * @param {WorkOrderRejectVo} workOrderRejectVo
1034
1037
  * @param {*} [options] Override http request option.
1035
1038
  * @throws {RequiredError}
1036
1039
  */
1037
- workOrderReject(workOrderId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
1040
+ workOrderReject(workOrderId: number, workOrderRejectVo: WorkOrderRejectVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
1038
1041
  /**
1039
1042
  *
1040
1043
  * @summary 新建工单
@@ -2525,6 +2528,12 @@ export interface WorkOrderApiWorkOrderRejectRequest {
2525
2528
  * @memberof WorkOrderApiWorkOrderReject
2526
2529
  */
2527
2530
  readonly workOrderId: number;
2531
+ /**
2532
+ *
2533
+ * @type {WorkOrderRejectVo}
2534
+ * @memberof WorkOrderApiWorkOrderReject
2535
+ */
2536
+ readonly workOrderRejectVo: WorkOrderRejectVo;
2528
2537
  }
2529
2538
  /**
2530
2539
  * Request parameters for workOrderRepairAdd operation in WorkOrderApi.
@@ -1861,12 +1861,15 @@ const WorkOrderApiAxiosParamCreator = function (configuration) {
1861
1861
  *
1862
1862
  * @summary 工单驳回
1863
1863
  * @param {number} workOrderId
1864
+ * @param {WorkOrderRejectVo} workOrderRejectVo
1864
1865
  * @param {*} [options] Override http request option.
1865
1866
  * @throws {RequiredError}
1866
1867
  */
1867
- workOrderReject: (workOrderId_1, ...args_1) => __awaiter(this, [workOrderId_1, ...args_1], void 0, function* (workOrderId, options = {}) {
1868
+ workOrderReject: (workOrderId_1, workOrderRejectVo_1, ...args_1) => __awaiter(this, [workOrderId_1, workOrderRejectVo_1, ...args_1], void 0, function* (workOrderId, workOrderRejectVo, options = {}) {
1868
1869
  // verify required parameter 'workOrderId' is not null or undefined
1869
1870
  (0, common_1.assertParamExists)('workOrderReject', 'workOrderId', workOrderId);
1871
+ // verify required parameter 'workOrderRejectVo' is not null or undefined
1872
+ (0, common_1.assertParamExists)('workOrderReject', 'workOrderRejectVo', workOrderRejectVo);
1870
1873
  const localVarPath = `/gizone/workOrder/reject/{workOrderId}`
1871
1874
  .replace(`{${"workOrderId"}}`, encodeURIComponent(String(workOrderId)));
1872
1875
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -1881,9 +1884,11 @@ const WorkOrderApiAxiosParamCreator = function (configuration) {
1881
1884
  // authentication tokenScheme required
1882
1885
  // http bearer authentication required
1883
1886
  yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
1887
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1884
1888
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1885
1889
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1886
1890
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1891
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(workOrderRejectVo, localVarRequestOptions, configuration);
1887
1892
  return {
1888
1893
  url: (0, common_1.toPathString)(localVarUrlObj),
1889
1894
  options: localVarRequestOptions,
@@ -2970,13 +2975,14 @@ const WorkOrderApiFp = function (configuration) {
2970
2975
  *
2971
2976
  * @summary 工单驳回
2972
2977
  * @param {number} workOrderId
2978
+ * @param {WorkOrderRejectVo} workOrderRejectVo
2973
2979
  * @param {*} [options] Override http request option.
2974
2980
  * @throws {RequiredError}
2975
2981
  */
2976
- workOrderReject(workOrderId, options) {
2982
+ workOrderReject(workOrderId, workOrderRejectVo, options) {
2977
2983
  return __awaiter(this, void 0, void 0, function* () {
2978
2984
  var _a, _b, _c;
2979
- const localVarAxiosArgs = yield localVarAxiosParamCreator.workOrderReject(workOrderId, options);
2985
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.workOrderReject(workOrderId, workOrderRejectVo, options);
2980
2986
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2981
2987
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['WorkOrderApi.workOrderReject']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2982
2988
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -3594,7 +3600,7 @@ const WorkOrderApiFactory = function (configuration, basePath, axios) {
3594
3600
  * @throws {RequiredError}
3595
3601
  */
3596
3602
  workOrderReject(requestParameters, options) {
3597
- return localVarFp.workOrderReject(requestParameters.workOrderId, options).then((request) => request(axios, basePath));
3603
+ return localVarFp.workOrderReject(requestParameters.workOrderId, requestParameters.workOrderRejectVo, options).then((request) => request(axios, basePath));
3598
3604
  },
3599
3605
  /**
3600
3606
  *
@@ -4212,7 +4218,7 @@ class WorkOrderApi extends base_1.BaseAPI {
4212
4218
  * @memberof WorkOrderApi
4213
4219
  */
4214
4220
  workOrderReject(requestParameters, options) {
4215
- return (0, exports.WorkOrderApiFp)(this.configuration).workOrderReject(requestParameters.workOrderId, options).then((request) => request(this.axios, this.basePath));
4221
+ return (0, exports.WorkOrderApiFp)(this.configuration).workOrderReject(requestParameters.workOrderId, requestParameters.workOrderRejectVo, options).then((request) => request(this.axios, this.basePath));
4216
4222
  }
4217
4223
  /**
4218
4224
  *
@@ -49,6 +49,13 @@ export declare const SpaceApiAxiosParamCreator: (configuration?: Configuration)
49
49
  * @throws {RequiredError}
50
50
  */
51
51
  spaceAdd: (spaceAddVO: SpaceAddVO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
52
+ /**
53
+ *
54
+ * @summary 批量导出空间
55
+ * @param {*} [options] Override http request option.
56
+ * @throws {RequiredError}
57
+ */
58
+ spaceBatchExport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
52
59
  /**
53
60
  *
54
61
  * @summary /新增---导入excel数据
@@ -216,6 +223,13 @@ export declare const SpaceApiFp: (configuration?: Configuration) => {
216
223
  * @throws {RequiredError}
217
224
  */
218
225
  spaceAdd(spaceAddVO: SpaceAddVO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
226
+ /**
227
+ *
228
+ * @summary 批量导出空间
229
+ * @param {*} [options] Override http request option.
230
+ * @throws {RequiredError}
231
+ */
232
+ spaceBatchExport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
219
233
  /**
220
234
  *
221
235
  * @summary /新增---导入excel数据
@@ -383,6 +397,13 @@ export declare const SpaceApiFactory: (configuration?: Configuration, basePath?:
383
397
  * @throws {RequiredError}
384
398
  */
385
399
  spaceAdd(requestParameters: SpaceApiSpaceAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
400
+ /**
401
+ *
402
+ * @summary 批量导出空间
403
+ * @param {*} [options] Override http request option.
404
+ * @throws {RequiredError}
405
+ */
406
+ spaceBatchExport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
386
407
  /**
387
408
  *
388
409
  * @summary /新增---导入excel数据
@@ -811,6 +832,14 @@ export declare class SpaceApi extends BaseAPI {
811
832
  * @memberof SpaceApi
812
833
  */
813
834
  spaceAdd(requestParameters: SpaceApiSpaceAddRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
835
+ /**
836
+ *
837
+ * @summary 批量导出空间
838
+ * @param {*} [options] Override http request option.
839
+ * @throws {RequiredError}
840
+ * @memberof SpaceApi
841
+ */
842
+ spaceBatchExport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
814
843
  /**
815
844
  *
816
845
  * @summary /新增---导入excel数据
@@ -99,6 +99,34 @@ export const SpaceApiAxiosParamCreator = function (configuration) {
99
99
  options: localVarRequestOptions,
100
100
  };
101
101
  }),
102
+ /**
103
+ *
104
+ * @summary 批量导出空间
105
+ * @param {*} [options] Override http request option.
106
+ * @throws {RequiredError}
107
+ */
108
+ spaceBatchExport: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
109
+ const localVarPath = `/gizone/space/batchExport`;
110
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
111
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
112
+ let baseOptions;
113
+ if (configuration) {
114
+ baseOptions = configuration.baseOptions;
115
+ }
116
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
117
+ const localVarHeaderParameter = {};
118
+ const localVarQueryParameter = {};
119
+ // authentication tokenScheme required
120
+ // http bearer authentication required
121
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
122
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
123
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
124
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
125
+ return {
126
+ url: toPathString(localVarUrlObj),
127
+ options: localVarRequestOptions,
128
+ };
129
+ }),
102
130
  /**
103
131
  *
104
132
  * @summary /新增---导入excel数据
@@ -742,6 +770,21 @@ export const SpaceApiFp = function (configuration) {
742
770
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
743
771
  });
744
772
  },
773
+ /**
774
+ *
775
+ * @summary 批量导出空间
776
+ * @param {*} [options] Override http request option.
777
+ * @throws {RequiredError}
778
+ */
779
+ spaceBatchExport(options) {
780
+ return __awaiter(this, void 0, void 0, function* () {
781
+ var _a, _b, _c;
782
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.spaceBatchExport(options);
783
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
784
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SpaceApi.spaceBatchExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
785
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
786
+ });
787
+ },
745
788
  /**
746
789
  *
747
790
  * @summary /新增---导入excel数据
@@ -1060,6 +1103,15 @@ export const SpaceApiFactory = function (configuration, basePath, axios) {
1060
1103
  spaceAdd(requestParameters, options) {
1061
1104
  return localVarFp.spaceAdd(requestParameters.spaceAddVO, options).then((request) => request(axios, basePath));
1062
1105
  },
1106
+ /**
1107
+ *
1108
+ * @summary 批量导出空间
1109
+ * @param {*} [options] Override http request option.
1110
+ * @throws {RequiredError}
1111
+ */
1112
+ spaceBatchExport(options) {
1113
+ return localVarFp.spaceBatchExport(options).then((request) => request(axios, basePath));
1114
+ },
1063
1115
  /**
1064
1116
  *
1065
1117
  * @summary /新增---导入excel数据
@@ -1270,6 +1322,16 @@ export class SpaceApi extends BaseAPI {
1270
1322
  spaceAdd(requestParameters, options) {
1271
1323
  return SpaceApiFp(this.configuration).spaceAdd(requestParameters.spaceAddVO, options).then((request) => request(this.axios, this.basePath));
1272
1324
  }
1325
+ /**
1326
+ *
1327
+ * @summary 批量导出空间
1328
+ * @param {*} [options] Override http request option.
1329
+ * @throws {RequiredError}
1330
+ * @memberof SpaceApi
1331
+ */
1332
+ spaceBatchExport(options) {
1333
+ return SpaceApiFp(this.configuration).spaceBatchExport(options).then((request) => request(this.axios, this.basePath));
1334
+ }
1273
1335
  /**
1274
1336
  *
1275
1337
  * @summary /新增---导入excel数据
@@ -57,6 +57,7 @@ import type { WorkOrderDistributeLeafletsVo } from '../models';
57
57
  import type { WorkOrderHandleMeterReadingVo } from '../models';
58
58
  import type { WorkOrderPlanRepeatsEnum } from '../models';
59
59
  import type { WorkOrderPushSettingsVO } from '../models';
60
+ import type { WorkOrderRejectVo } from '../models';
60
61
  import type { WorkOrderReportVo } from '../models';
61
62
  import type { WorkOrderSpotCheckVo } from '../models';
62
63
  import type { WorkOrderStagingDataVo } from '../models';
@@ -516,10 +517,11 @@ export declare const WorkOrderApiAxiosParamCreator: (configuration?: Configurati
516
517
  *
517
518
  * @summary 工单驳回
518
519
  * @param {number} workOrderId
520
+ * @param {WorkOrderRejectVo} workOrderRejectVo
519
521
  * @param {*} [options] Override http request option.
520
522
  * @throws {RequiredError}
521
523
  */
522
- workOrderReject: (workOrderId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
524
+ workOrderReject: (workOrderId: number, workOrderRejectVo: WorkOrderRejectVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
523
525
  /**
524
526
  *
525
527
  * @summary 新建工单
@@ -1031,10 +1033,11 @@ export declare const WorkOrderApiFp: (configuration?: Configuration) => {
1031
1033
  *
1032
1034
  * @summary 工单驳回
1033
1035
  * @param {number} workOrderId
1036
+ * @param {WorkOrderRejectVo} workOrderRejectVo
1034
1037
  * @param {*} [options] Override http request option.
1035
1038
  * @throws {RequiredError}
1036
1039
  */
1037
- workOrderReject(workOrderId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
1040
+ workOrderReject(workOrderId: number, workOrderRejectVo: WorkOrderRejectVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
1038
1041
  /**
1039
1042
  *
1040
1043
  * @summary 新建工单
@@ -2525,6 +2528,12 @@ export interface WorkOrderApiWorkOrderRejectRequest {
2525
2528
  * @memberof WorkOrderApiWorkOrderReject
2526
2529
  */
2527
2530
  readonly workOrderId: number;
2531
+ /**
2532
+ *
2533
+ * @type {WorkOrderRejectVo}
2534
+ * @memberof WorkOrderApiWorkOrderReject
2535
+ */
2536
+ readonly workOrderRejectVo: WorkOrderRejectVo;
2528
2537
  }
2529
2538
  /**
2530
2539
  * Request parameters for workOrderRepairAdd operation in WorkOrderApi.
@@ -1858,12 +1858,15 @@ export const WorkOrderApiAxiosParamCreator = function (configuration) {
1858
1858
  *
1859
1859
  * @summary 工单驳回
1860
1860
  * @param {number} workOrderId
1861
+ * @param {WorkOrderRejectVo} workOrderRejectVo
1861
1862
  * @param {*} [options] Override http request option.
1862
1863
  * @throws {RequiredError}
1863
1864
  */
1864
- workOrderReject: (workOrderId_1, ...args_1) => __awaiter(this, [workOrderId_1, ...args_1], void 0, function* (workOrderId, options = {}) {
1865
+ workOrderReject: (workOrderId_1, workOrderRejectVo_1, ...args_1) => __awaiter(this, [workOrderId_1, workOrderRejectVo_1, ...args_1], void 0, function* (workOrderId, workOrderRejectVo, options = {}) {
1865
1866
  // verify required parameter 'workOrderId' is not null or undefined
1866
1867
  assertParamExists('workOrderReject', 'workOrderId', workOrderId);
1868
+ // verify required parameter 'workOrderRejectVo' is not null or undefined
1869
+ assertParamExists('workOrderReject', 'workOrderRejectVo', workOrderRejectVo);
1867
1870
  const localVarPath = `/gizone/workOrder/reject/{workOrderId}`
1868
1871
  .replace(`{${"workOrderId"}}`, encodeURIComponent(String(workOrderId)));
1869
1872
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -1878,9 +1881,11 @@ export const WorkOrderApiAxiosParamCreator = function (configuration) {
1878
1881
  // authentication tokenScheme required
1879
1882
  // http bearer authentication required
1880
1883
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1884
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1881
1885
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1882
1886
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1883
1887
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1888
+ localVarRequestOptions.data = serializeDataIfNeeded(workOrderRejectVo, localVarRequestOptions, configuration);
1884
1889
  return {
1885
1890
  url: toPathString(localVarUrlObj),
1886
1891
  options: localVarRequestOptions,
@@ -2966,13 +2971,14 @@ export const WorkOrderApiFp = function (configuration) {
2966
2971
  *
2967
2972
  * @summary 工单驳回
2968
2973
  * @param {number} workOrderId
2974
+ * @param {WorkOrderRejectVo} workOrderRejectVo
2969
2975
  * @param {*} [options] Override http request option.
2970
2976
  * @throws {RequiredError}
2971
2977
  */
2972
- workOrderReject(workOrderId, options) {
2978
+ workOrderReject(workOrderId, workOrderRejectVo, options) {
2973
2979
  return __awaiter(this, void 0, void 0, function* () {
2974
2980
  var _a, _b, _c;
2975
- const localVarAxiosArgs = yield localVarAxiosParamCreator.workOrderReject(workOrderId, options);
2981
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.workOrderReject(workOrderId, workOrderRejectVo, options);
2976
2982
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2977
2983
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['WorkOrderApi.workOrderReject']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2978
2984
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -3589,7 +3595,7 @@ export const WorkOrderApiFactory = function (configuration, basePath, axios) {
3589
3595
  * @throws {RequiredError}
3590
3596
  */
3591
3597
  workOrderReject(requestParameters, options) {
3592
- return localVarFp.workOrderReject(requestParameters.workOrderId, options).then((request) => request(axios, basePath));
3598
+ return localVarFp.workOrderReject(requestParameters.workOrderId, requestParameters.workOrderRejectVo, options).then((request) => request(axios, basePath));
3593
3599
  },
3594
3600
  /**
3595
3601
  *
@@ -4206,7 +4212,7 @@ export class WorkOrderApi extends BaseAPI {
4206
4212
  * @memberof WorkOrderApi
4207
4213
  */
4208
4214
  workOrderReject(requestParameters, options) {
4209
- return WorkOrderApiFp(this.configuration).workOrderReject(requestParameters.workOrderId, options).then((request) => request(this.axios, this.basePath));
4215
+ return WorkOrderApiFp(this.configuration).workOrderReject(requestParameters.workOrderId, requestParameters.workOrderRejectVo, options).then((request) => request(this.axios, this.basePath));
4210
4216
  }
4211
4217
  /**
4212
4218
  *
@@ -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 {GetUserWx200ResponseLocale}
34
+ * @type {object}
41
35
  * @memberof GetUserWx200Response
42
36
  */
43
- 'locale'?: GetUserWx200ResponseLocale;
37
+ 'trailerFields'?: object;
44
38
  /**
45
39
  *
46
- * @type {number}
40
+ * @type {GetUserWx200ResponseLocale}
47
41
  * @memberof GetUserWx200Response
48
42
  */
49
- 'bufferSize'?: number;
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}
@@ -922,6 +922,7 @@ export * from './work-order-plan-repeats-enum';
922
922
  export * from './work-order-push-settings-entity';
923
923
  export * from './work-order-push-settings-save-or-update-vo';
924
924
  export * from './work-order-push-settings-vo';
925
+ export * from './work-order-reject-vo';
925
926
  export * from './work-order-report-vo';
926
927
  export * from './work-order-search-dto';
927
928
  export * from './work-order-settings-type-enum';
@@ -922,6 +922,7 @@ export * from './work-order-plan-repeats-enum';
922
922
  export * from './work-order-push-settings-entity';
923
923
  export * from './work-order-push-settings-save-or-update-vo';
924
924
  export * from './work-order-push-settings-vo';
925
+ export * from './work-order-reject-vo';
925
926
  export * from './work-order-report-vo';
926
927
  export * from './work-order-search-dto';
927
928
  export * from './work-order-settings-type-enum';
@@ -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}
@@ -370,14 +370,14 @@ export interface SysUser {
370
370
  'userAttachments'?: Array<SysUserAttachmentInfo>;
371
371
  /**
372
372
  *
373
- * @type {string}
373
+ * @type {number}
374
374
  * @memberof SysUser
375
375
  */
376
- 'cid'?: string;
376
+ 'cuserId'?: number;
377
377
  /**
378
378
  *
379
- * @type {number}
379
+ * @type {string}
380
380
  * @memberof SysUser
381
381
  */
382
- 'cuserId'?: number;
382
+ 'cid'?: string;
383
383
  }
@@ -0,0 +1,24 @@
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
+ * @interface WorkOrderRejectVo
16
+ */
17
+ export interface WorkOrderRejectVo {
18
+ /**
19
+ * 驳回原因
20
+ * @type {string}
21
+ * @memberof WorkOrderRejectVo
22
+ */
23
+ 'reasonDescription'?: string;
24
+ }
@@ -0,0 +1,14 @@
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 {};
@@ -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 {GetUserWx200ResponseLocale}
34
+ * @type {object}
41
35
  * @memberof GetUserWx200Response
42
36
  */
43
- 'locale'?: GetUserWx200ResponseLocale;
37
+ 'trailerFields'?: object;
44
38
  /**
45
39
  *
46
- * @type {number}
40
+ * @type {GetUserWx200ResponseLocale}
47
41
  * @memberof GetUserWx200Response
48
42
  */
49
- 'bufferSize'?: number;
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}
@@ -922,6 +922,7 @@ export * from './work-order-plan-repeats-enum';
922
922
  export * from './work-order-push-settings-entity';
923
923
  export * from './work-order-push-settings-save-or-update-vo';
924
924
  export * from './work-order-push-settings-vo';
925
+ export * from './work-order-reject-vo';
925
926
  export * from './work-order-report-vo';
926
927
  export * from './work-order-search-dto';
927
928
  export * from './work-order-settings-type-enum';
@@ -938,6 +938,7 @@ __exportStar(require("./work-order-plan-repeats-enum"), exports);
938
938
  __exportStar(require("./work-order-push-settings-entity"), exports);
939
939
  __exportStar(require("./work-order-push-settings-save-or-update-vo"), exports);
940
940
  __exportStar(require("./work-order-push-settings-vo"), exports);
941
+ __exportStar(require("./work-order-reject-vo"), exports);
941
942
  __exportStar(require("./work-order-report-vo"), exports);
942
943
  __exportStar(require("./work-order-search-dto"), exports);
943
944
  __exportStar(require("./work-order-settings-type-enum"), exports);
@@ -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}
@@ -370,14 +370,14 @@ export interface SysUser {
370
370
  'userAttachments'?: Array<SysUserAttachmentInfo>;
371
371
  /**
372
372
  *
373
- * @type {string}
373
+ * @type {number}
374
374
  * @memberof SysUser
375
375
  */
376
- 'cid'?: string;
376
+ 'cuserId'?: number;
377
377
  /**
378
378
  *
379
- * @type {number}
379
+ * @type {string}
380
380
  * @memberof SysUser
381
381
  */
382
- 'cuserId'?: number;
382
+ 'cid'?: string;
383
383
  }
@@ -0,0 +1,24 @@
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
+ * @interface WorkOrderRejectVo
16
+ */
17
+ export interface WorkOrderRejectVo {
18
+ /**
19
+ * 驳回原因
20
+ * @type {string}
21
+ * @memberof WorkOrderRejectVo
22
+ */
23
+ 'reasonDescription'?: string;
24
+ }
@@ -0,0 +1,15 @@
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 });
@@ -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 {GetUserWx200ResponseLocale}
43
+ * @type {object}
50
44
  * @memberof GetUserWx200Response
51
45
  */
52
- 'locale'?: GetUserWx200ResponseLocale;
46
+ 'trailerFields'?: object;
53
47
  /**
54
48
  *
55
- * @type {number}
49
+ * @type {GetUserWx200ResponseLocale}
56
50
  * @memberof GetUserWx200Response
57
51
  */
58
- 'bufferSize'?: number;
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}
package/models/index.ts CHANGED
@@ -922,6 +922,7 @@ export * from './work-order-plan-repeats-enum';
922
922
  export * from './work-order-push-settings-entity';
923
923
  export * from './work-order-push-settings-save-or-update-vo';
924
924
  export * from './work-order-push-settings-vo';
925
+ export * from './work-order-reject-vo';
925
926
  export * from './work-order-report-vo';
926
927
  export * from './work-order-search-dto';
927
928
  export * from './work-order-settings-type-enum';
@@ -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}
@@ -379,15 +379,15 @@ export interface SysUser {
379
379
  'userAttachments'?: Array<SysUserAttachmentInfo>;
380
380
  /**
381
381
  *
382
- * @type {string}
382
+ * @type {number}
383
383
  * @memberof SysUser
384
384
  */
385
- 'cid'?: string;
385
+ 'cuserId'?: number;
386
386
  /**
387
387
  *
388
- * @type {number}
388
+ * @type {string}
389
389
  * @memberof SysUser
390
390
  */
391
- 'cuserId'?: number;
391
+ 'cid'?: string;
392
392
  }
393
393
 
@@ -0,0 +1,30 @@
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
+
17
+ /**
18
+ * 工单驳回入参
19
+ * @export
20
+ * @interface WorkOrderRejectVo
21
+ */
22
+ export interface WorkOrderRejectVo {
23
+ /**
24
+ * 驳回原因
25
+ * @type {string}
26
+ * @memberof WorkOrderRejectVo
27
+ */
28
+ 'reasonDescription'?: string;
29
+ }
30
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.2.0-alpha.270",
3
+ "version": "4.2.0-alpha.272",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {