@gizone/rrs-client 4.1.0-alpha.134 → 4.1.0-alpha.136

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.
@@ -1335,6 +1335,40 @@ export const WorkOrderApiAxiosParamCreator = function (configuration?: Configura
1335
1335
  options: localVarRequestOptions,
1336
1336
  };
1337
1337
  },
1338
+ /**
1339
+ *
1340
+ * @summary 更新SQM索赔单状态
1341
+ * @param {*} [options] Override http request option.
1342
+ * @throws {RequiredError}
1343
+ */
1344
+ updateSqmStatus: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1345
+ const localVarPath = `/gizone/workOrder/violation/updateSqmStatus`;
1346
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1347
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1348
+ let baseOptions;
1349
+ if (configuration) {
1350
+ baseOptions = configuration.baseOptions;
1351
+ }
1352
+
1353
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
1354
+ const localVarHeaderParameter = {} as any;
1355
+ const localVarQueryParameter = {} as any;
1356
+
1357
+ // authentication tokenScheme required
1358
+ // http bearer authentication required
1359
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
1360
+
1361
+
1362
+
1363
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1364
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1365
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1366
+
1367
+ return {
1368
+ url: toPathString(localVarUrlObj),
1369
+ options: localVarRequestOptions,
1370
+ };
1371
+ },
1338
1372
  /**
1339
1373
  *
1340
1374
  * @summary 工单关闭
@@ -2803,6 +2837,18 @@ export const WorkOrderApiFp = function(configuration?: Configuration) {
2803
2837
  const localVarOperationServerBasePath = operationServerMap['WorkOrderApi.toState']?.[localVarOperationServerIndex]?.url;
2804
2838
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2805
2839
  },
2840
+ /**
2841
+ *
2842
+ * @summary 更新SQM索赔单状态
2843
+ * @param {*} [options] Override http request option.
2844
+ * @throws {RequiredError}
2845
+ */
2846
+ async updateSqmStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>> {
2847
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateSqmStatus(options);
2848
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
2849
+ const localVarOperationServerBasePath = operationServerMap['WorkOrderApi.updateSqmStatus']?.[localVarOperationServerIndex]?.url;
2850
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2851
+ },
2806
2852
  /**
2807
2853
  *
2808
2854
  * @summary 工单关闭
@@ -3421,6 +3467,15 @@ export const WorkOrderApiFactory = function (configuration?: Configuration, base
3421
3467
  toState(requestParameters: WorkOrderApiToStateRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
3422
3468
  return localVarFp.toState(requestParameters.planToStateVo, options).then((request) => request(axios, basePath));
3423
3469
  },
3470
+ /**
3471
+ *
3472
+ * @summary 更新SQM索赔单状态
3473
+ * @param {*} [options] Override http request option.
3474
+ * @throws {RequiredError}
3475
+ */
3476
+ updateSqmStatus(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid> {
3477
+ return localVarFp.updateSqmStatus(options).then((request) => request(axios, basePath));
3478
+ },
3424
3479
  /**
3425
3480
  *
3426
3481
  * @summary 工单关闭
@@ -5099,6 +5154,17 @@ export class WorkOrderApi extends BaseAPI {
5099
5154
  return WorkOrderApiFp(this.configuration).toState(requestParameters.planToStateVo, options).then((request) => request(this.axios, this.basePath));
5100
5155
  }
5101
5156
 
5157
+ /**
5158
+ *
5159
+ * @summary 更新SQM索赔单状态
5160
+ * @param {*} [options] Override http request option.
5161
+ * @throws {RequiredError}
5162
+ * @memberof WorkOrderApi
5163
+ */
5164
+ public updateSqmStatus(options?: RawAxiosRequestConfig) {
5165
+ return WorkOrderApiFp(this.configuration).updateSqmStatus(options).then((request) => request(this.axios, this.basePath));
5166
+ }
5167
+
5102
5168
  /**
5103
5169
  *
5104
5170
  * @summary 工单关闭
@@ -305,6 +305,13 @@ export declare const WorkOrderApiAxiosParamCreator: (configuration?: Configurati
305
305
  * @throws {RequiredError}
306
306
  */
307
307
  toState: (planToStateVo: PlanToStateVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
308
+ /**
309
+ *
310
+ * @summary 更新SQM索赔单状态
311
+ * @param {*} [options] Override http request option.
312
+ * @throws {RequiredError}
313
+ */
314
+ updateSqmStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
308
315
  /**
309
316
  *
310
317
  * @summary 工单关闭
@@ -775,6 +782,13 @@ export declare const WorkOrderApiFp: (configuration?: Configuration) => {
775
782
  * @throws {RequiredError}
776
783
  */
777
784
  toState(planToStateVo: PlanToStateVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
785
+ /**
786
+ *
787
+ * @summary 更新SQM索赔单状态
788
+ * @param {*} [options] Override http request option.
789
+ * @throws {RequiredError}
790
+ */
791
+ updateSqmStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
778
792
  /**
779
793
  *
780
794
  * @summary 工单关闭
@@ -1212,6 +1226,13 @@ export declare const WorkOrderApiFactory: (configuration?: Configuration, basePa
1212
1226
  * @throws {RequiredError}
1213
1227
  */
1214
1228
  toState(requestParameters: WorkOrderApiToStateRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
1229
+ /**
1230
+ *
1231
+ * @summary 更新SQM索赔单状态
1232
+ * @param {*} [options] Override http request option.
1233
+ * @throws {RequiredError}
1234
+ */
1235
+ updateSqmStatus(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
1215
1236
  /**
1216
1237
  *
1217
1238
  * @summary 工单关闭
@@ -2653,6 +2674,14 @@ export declare class WorkOrderApi extends BaseAPI {
2653
2674
  * @memberof WorkOrderApi
2654
2675
  */
2655
2676
  toState(requestParameters: WorkOrderApiToStateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
2677
+ /**
2678
+ *
2679
+ * @summary 更新SQM索赔单状态
2680
+ * @param {*} [options] Override http request option.
2681
+ * @throws {RequiredError}
2682
+ * @memberof WorkOrderApi
2683
+ */
2684
+ updateSqmStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
2656
2685
  /**
2657
2686
  *
2658
2687
  * @summary 工单关闭
@@ -1039,6 +1039,34 @@ const WorkOrderApiAxiosParamCreator = function (configuration) {
1039
1039
  options: localVarRequestOptions,
1040
1040
  };
1041
1041
  }),
1042
+ /**
1043
+ *
1044
+ * @summary 更新SQM索赔单状态
1045
+ * @param {*} [options] Override http request option.
1046
+ * @throws {RequiredError}
1047
+ */
1048
+ updateSqmStatus: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
1049
+ const localVarPath = `/gizone/workOrder/violation/updateSqmStatus`;
1050
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1051
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1052
+ let baseOptions;
1053
+ if (configuration) {
1054
+ baseOptions = configuration.baseOptions;
1055
+ }
1056
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1057
+ const localVarHeaderParameter = {};
1058
+ const localVarQueryParameter = {};
1059
+ // authentication tokenScheme required
1060
+ // http bearer authentication required
1061
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
1062
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1063
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1064
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1065
+ return {
1066
+ url: (0, common_1.toPathString)(localVarUrlObj),
1067
+ options: localVarRequestOptions,
1068
+ };
1069
+ }),
1042
1070
  /**
1043
1071
  *
1044
1072
  * @summary 工单关闭
@@ -2407,6 +2435,21 @@ const WorkOrderApiFp = function (configuration) {
2407
2435
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2408
2436
  });
2409
2437
  },
2438
+ /**
2439
+ *
2440
+ * @summary 更新SQM索赔单状态
2441
+ * @param {*} [options] Override http request option.
2442
+ * @throws {RequiredError}
2443
+ */
2444
+ updateSqmStatus(options) {
2445
+ return __awaiter(this, void 0, void 0, function* () {
2446
+ var _a, _b, _c;
2447
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.updateSqmStatus(options);
2448
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2449
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['WorkOrderApi.updateSqmStatus']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2450
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2451
+ });
2452
+ },
2410
2453
  /**
2411
2454
  *
2412
2455
  * @summary 工单关闭
@@ -3100,6 +3143,15 @@ const WorkOrderApiFactory = function (configuration, basePath, axios) {
3100
3143
  toState(requestParameters, options) {
3101
3144
  return localVarFp.toState(requestParameters.planToStateVo, options).then((request) => request(axios, basePath));
3102
3145
  },
3146
+ /**
3147
+ *
3148
+ * @summary 更新SQM索赔单状态
3149
+ * @param {*} [options] Override http request option.
3150
+ * @throws {RequiredError}
3151
+ */
3152
+ updateSqmStatus(options) {
3153
+ return localVarFp.updateSqmStatus(options).then((request) => request(axios, basePath));
3154
+ },
3103
3155
  /**
3104
3156
  *
3105
3157
  * @summary 工单关闭
@@ -3646,6 +3698,16 @@ class WorkOrderApi extends base_1.BaseAPI {
3646
3698
  toState(requestParameters, options) {
3647
3699
  return (0, exports.WorkOrderApiFp)(this.configuration).toState(requestParameters.planToStateVo, options).then((request) => request(this.axios, this.basePath));
3648
3700
  }
3701
+ /**
3702
+ *
3703
+ * @summary 更新SQM索赔单状态
3704
+ * @param {*} [options] Override http request option.
3705
+ * @throws {RequiredError}
3706
+ * @memberof WorkOrderApi
3707
+ */
3708
+ updateSqmStatus(options) {
3709
+ return (0, exports.WorkOrderApiFp)(this.configuration).updateSqmStatus(options).then((request) => request(this.axios, this.basePath));
3710
+ }
3649
3711
  /**
3650
3712
  *
3651
3713
  * @summary 工单关闭
@@ -305,6 +305,13 @@ export declare const WorkOrderApiAxiosParamCreator: (configuration?: Configurati
305
305
  * @throws {RequiredError}
306
306
  */
307
307
  toState: (planToStateVo: PlanToStateVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
308
+ /**
309
+ *
310
+ * @summary 更新SQM索赔单状态
311
+ * @param {*} [options] Override http request option.
312
+ * @throws {RequiredError}
313
+ */
314
+ updateSqmStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
308
315
  /**
309
316
  *
310
317
  * @summary 工单关闭
@@ -775,6 +782,13 @@ export declare const WorkOrderApiFp: (configuration?: Configuration) => {
775
782
  * @throws {RequiredError}
776
783
  */
777
784
  toState(planToStateVo: PlanToStateVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
785
+ /**
786
+ *
787
+ * @summary 更新SQM索赔单状态
788
+ * @param {*} [options] Override http request option.
789
+ * @throws {RequiredError}
790
+ */
791
+ updateSqmStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
778
792
  /**
779
793
  *
780
794
  * @summary 工单关闭
@@ -1212,6 +1226,13 @@ export declare const WorkOrderApiFactory: (configuration?: Configuration, basePa
1212
1226
  * @throws {RequiredError}
1213
1227
  */
1214
1228
  toState(requestParameters: WorkOrderApiToStateRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
1229
+ /**
1230
+ *
1231
+ * @summary 更新SQM索赔单状态
1232
+ * @param {*} [options] Override http request option.
1233
+ * @throws {RequiredError}
1234
+ */
1235
+ updateSqmStatus(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
1215
1236
  /**
1216
1237
  *
1217
1238
  * @summary 工单关闭
@@ -2653,6 +2674,14 @@ export declare class WorkOrderApi extends BaseAPI {
2653
2674
  * @memberof WorkOrderApi
2654
2675
  */
2655
2676
  toState(requestParameters: WorkOrderApiToStateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
2677
+ /**
2678
+ *
2679
+ * @summary 更新SQM索赔单状态
2680
+ * @param {*} [options] Override http request option.
2681
+ * @throws {RequiredError}
2682
+ * @memberof WorkOrderApi
2683
+ */
2684
+ updateSqmStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
2656
2685
  /**
2657
2686
  *
2658
2687
  * @summary 工单关闭
@@ -1036,6 +1036,34 @@ export const WorkOrderApiAxiosParamCreator = function (configuration) {
1036
1036
  options: localVarRequestOptions,
1037
1037
  };
1038
1038
  }),
1039
+ /**
1040
+ *
1041
+ * @summary 更新SQM索赔单状态
1042
+ * @param {*} [options] Override http request option.
1043
+ * @throws {RequiredError}
1044
+ */
1045
+ updateSqmStatus: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
1046
+ const localVarPath = `/gizone/workOrder/violation/updateSqmStatus`;
1047
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1048
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1049
+ let baseOptions;
1050
+ if (configuration) {
1051
+ baseOptions = configuration.baseOptions;
1052
+ }
1053
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1054
+ const localVarHeaderParameter = {};
1055
+ const localVarQueryParameter = {};
1056
+ // authentication tokenScheme required
1057
+ // http bearer authentication required
1058
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1059
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1060
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1061
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1062
+ return {
1063
+ url: toPathString(localVarUrlObj),
1064
+ options: localVarRequestOptions,
1065
+ };
1066
+ }),
1039
1067
  /**
1040
1068
  *
1041
1069
  * @summary 工单关闭
@@ -2403,6 +2431,21 @@ export const WorkOrderApiFp = function (configuration) {
2403
2431
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2404
2432
  });
2405
2433
  },
2434
+ /**
2435
+ *
2436
+ * @summary 更新SQM索赔单状态
2437
+ * @param {*} [options] Override http request option.
2438
+ * @throws {RequiredError}
2439
+ */
2440
+ updateSqmStatus(options) {
2441
+ return __awaiter(this, void 0, void 0, function* () {
2442
+ var _a, _b, _c;
2443
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.updateSqmStatus(options);
2444
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2445
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['WorkOrderApi.updateSqmStatus']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2446
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2447
+ });
2448
+ },
2406
2449
  /**
2407
2450
  *
2408
2451
  * @summary 工单关闭
@@ -3095,6 +3138,15 @@ export const WorkOrderApiFactory = function (configuration, basePath, axios) {
3095
3138
  toState(requestParameters, options) {
3096
3139
  return localVarFp.toState(requestParameters.planToStateVo, options).then((request) => request(axios, basePath));
3097
3140
  },
3141
+ /**
3142
+ *
3143
+ * @summary 更新SQM索赔单状态
3144
+ * @param {*} [options] Override http request option.
3145
+ * @throws {RequiredError}
3146
+ */
3147
+ updateSqmStatus(options) {
3148
+ return localVarFp.updateSqmStatus(options).then((request) => request(axios, basePath));
3149
+ },
3098
3150
  /**
3099
3151
  *
3100
3152
  * @summary 工单关闭
@@ -3640,6 +3692,16 @@ export class WorkOrderApi extends BaseAPI {
3640
3692
  toState(requestParameters, options) {
3641
3693
  return WorkOrderApiFp(this.configuration).toState(requestParameters.planToStateVo, options).then((request) => request(this.axios, this.basePath));
3642
3694
  }
3695
+ /**
3696
+ *
3697
+ * @summary 更新SQM索赔单状态
3698
+ * @param {*} [options] Override http request option.
3699
+ * @throws {RequiredError}
3700
+ * @memberof WorkOrderApi
3701
+ */
3702
+ updateSqmStatus(options) {
3703
+ return WorkOrderApiFp(this.configuration).updateSqmStatus(options).then((request) => request(this.axios, this.basePath));
3704
+ }
3643
3705
  /**
3644
3706
  *
3645
3707
  * @summary 工单关闭
@@ -19,16 +19,16 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
19
19
  export interface GetUserWx200Response {
20
20
  /**
21
21
  *
22
- * @type {number}
22
+ * @type {Array<string>}
23
23
  * @memberof GetUserWx200Response
24
24
  */
25
- 'status'?: number;
25
+ 'headerNames'?: Array<string>;
26
26
  /**
27
27
  *
28
- * @type {Array<string>}
28
+ * @type {number}
29
29
  * @memberof GetUserWx200Response
30
30
  */
31
- 'headerNames'?: Array<string>;
31
+ 'status'?: number;
32
32
  /**
33
33
  *
34
34
  * @type {object}
@@ -24,16 +24,16 @@ export interface IPageAccessVO {
24
24
  'total'?: number;
25
25
  /**
26
26
  *
27
- * @type {Array<AccessVO>}
27
+ * @type {number}
28
28
  * @memberof IPageAccessVO
29
29
  */
30
- 'records'?: Array<AccessVO>;
30
+ 'current'?: number;
31
31
  /**
32
32
  *
33
- * @type {number}
33
+ * @type {Array<AccessVO>}
34
34
  * @memberof IPageAccessVO
35
35
  */
36
- 'current'?: number;
36
+ 'records'?: Array<AccessVO>;
37
37
  /**
38
38
  *
39
39
  * @type {boolean}
@@ -65,4 +65,10 @@ export interface ViolationDecisionVo {
65
65
  * @memberof ViolationDecisionVo
66
66
  */
67
67
  'claimContent'?: string;
68
+ /**
69
+ * 索赔金额
70
+ * @type {number}
71
+ * @memberof ViolationDecisionVo
72
+ */
73
+ 'claimAmount'?: number;
68
74
  }
@@ -19,16 +19,16 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
19
19
  export interface GetUserWx200Response {
20
20
  /**
21
21
  *
22
- * @type {number}
22
+ * @type {Array<string>}
23
23
  * @memberof GetUserWx200Response
24
24
  */
25
- 'status'?: number;
25
+ 'headerNames'?: Array<string>;
26
26
  /**
27
27
  *
28
- * @type {Array<string>}
28
+ * @type {number}
29
29
  * @memberof GetUserWx200Response
30
30
  */
31
- 'headerNames'?: Array<string>;
31
+ 'status'?: number;
32
32
  /**
33
33
  *
34
34
  * @type {object}
@@ -24,16 +24,16 @@ export interface IPageAccessVO {
24
24
  'total'?: number;
25
25
  /**
26
26
  *
27
- * @type {Array<AccessVO>}
27
+ * @type {number}
28
28
  * @memberof IPageAccessVO
29
29
  */
30
- 'records'?: Array<AccessVO>;
30
+ 'current'?: number;
31
31
  /**
32
32
  *
33
- * @type {number}
33
+ * @type {Array<AccessVO>}
34
34
  * @memberof IPageAccessVO
35
35
  */
36
- 'current'?: number;
36
+ 'records'?: Array<AccessVO>;
37
37
  /**
38
38
  *
39
39
  * @type {boolean}
@@ -65,4 +65,10 @@ export interface ViolationDecisionVo {
65
65
  * @memberof ViolationDecisionVo
66
66
  */
67
67
  'claimContent'?: string;
68
+ /**
69
+ * 索赔金额
70
+ * @type {number}
71
+ * @memberof ViolationDecisionVo
72
+ */
73
+ 'claimAmount'?: number;
68
74
  }
@@ -28,16 +28,16 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
28
28
  export interface GetUserWx200Response {
29
29
  /**
30
30
  *
31
- * @type {number}
31
+ * @type {Array<string>}
32
32
  * @memberof GetUserWx200Response
33
33
  */
34
- 'status'?: number;
34
+ 'headerNames'?: Array<string>;
35
35
  /**
36
36
  *
37
- * @type {Array<string>}
37
+ * @type {number}
38
38
  * @memberof GetUserWx200Response
39
39
  */
40
- 'headerNames'?: Array<string>;
40
+ 'status'?: number;
41
41
  /**
42
42
  *
43
43
  * @type {object}
@@ -31,16 +31,16 @@ export interface IPageAccessVO {
31
31
  'total'?: number;
32
32
  /**
33
33
  *
34
- * @type {Array<AccessVO>}
34
+ * @type {number}
35
35
  * @memberof IPageAccessVO
36
36
  */
37
- 'records'?: Array<AccessVO>;
37
+ 'current'?: number;
38
38
  /**
39
39
  *
40
- * @type {number}
40
+ * @type {Array<AccessVO>}
41
41
  * @memberof IPageAccessVO
42
42
  */
43
- 'current'?: number;
43
+ 'records'?: Array<AccessVO>;
44
44
  /**
45
45
  *
46
46
  * @type {boolean}
@@ -74,6 +74,12 @@ export interface ViolationDecisionVo {
74
74
  * @memberof ViolationDecisionVo
75
75
  */
76
76
  'claimContent'?: string;
77
+ /**
78
+ * 索赔金额
79
+ * @type {number}
80
+ * @memberof ViolationDecisionVo
81
+ */
82
+ 'claimAmount'?: number;
77
83
  }
78
84
 
79
85
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.1.0-alpha.134",
3
+ "version": "4.1.0-alpha.136",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {