@gizone/rrs-client 4.2.9-alpha.713 → 4.2.9-alpha.714
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +2 -0
- package/apis/evaluation-api.ts +379 -11
- package/dist/apis/evaluation-api.d.ts +211 -6
- package/dist/apis/evaluation-api.js +225 -9
- package/dist/esm/apis/evaluation-api.d.ts +211 -6
- package/dist/esm/apis/evaluation-api.js +225 -9
- package/dist/esm/models/evaluation-list-vo.d.ts +60 -0
- package/dist/esm/models/evaluation-statistics-vo.d.ts +54 -0
- package/dist/esm/models/evaluation-statistics-vo.js +14 -0
- package/dist/esm/models/index.d.ts +2 -0
- package/dist/esm/models/index.js +2 -0
- package/dist/esm/models/json-result-evaluation-statistics-vo.d.ts +62 -0
- package/dist/esm/models/json-result-evaluation-statistics-vo.js +14 -0
- package/dist/models/evaluation-list-vo.d.ts +60 -0
- package/dist/models/evaluation-statistics-vo.d.ts +54 -0
- package/dist/models/evaluation-statistics-vo.js +15 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/json-result-evaluation-statistics-vo.d.ts +62 -0
- package/dist/models/json-result-evaluation-statistics-vo.js +15 -0
- package/models/evaluation-list-vo.ts +60 -0
- package/models/evaluation-statistics-vo.ts +60 -0
- package/models/index.ts +2 -0
- package/models/json-result-evaluation-statistics-vo.ts +72 -0
- package/ossutil.log +1221 -1221
- package/package.json +1 -1
|
@@ -20,6 +20,7 @@ import type { EvaluationTypeEnum } from '../models';
|
|
|
20
20
|
import type { JsonResultBoolean } from '../models';
|
|
21
21
|
import type { JsonResultEvaluationApprovalRecordEntity } from '../models';
|
|
22
22
|
import type { JsonResultEvaluationDetailsVo } from '../models';
|
|
23
|
+
import type { JsonResultEvaluationStatisticsVo } from '../models';
|
|
23
24
|
import type { JsonResultInteger } from '../models';
|
|
24
25
|
import type { JsonResultPageDtoEvaluationListVo } from '../models';
|
|
25
26
|
/**
|
|
@@ -64,7 +65,7 @@ export declare const EvaluationApiAxiosParamCreator: (configuration?: Configurat
|
|
|
64
65
|
* 根据关键词、类型、状态等条件分页查询评价列表
|
|
65
66
|
* @summary 分页查询评价列表
|
|
66
67
|
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
67
|
-
* @param {number} [
|
|
68
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
68
69
|
* @param {string} [generateStartTime] 生成开始时间
|
|
69
70
|
* @param {string} [generateEndTime] 生成结束时间
|
|
70
71
|
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
@@ -74,7 +75,7 @@ export declare const EvaluationApiAxiosParamCreator: (configuration?: Configurat
|
|
|
74
75
|
* @param {*} [options] Override http request option.
|
|
75
76
|
* @throws {RequiredError}
|
|
76
77
|
*/
|
|
77
|
-
evaluationPageList: (searchValue?: string,
|
|
78
|
+
evaluationPageList: (searchValue?: string, parkIds?: Array<number>, generateStartTime?: string, generateEndTime?: string, evaluationType?: EvaluationTypeEnum, evaluationStatuses?: Array<EvaluationStatusEnum>, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78
79
|
/**
|
|
79
80
|
* 保存评价草稿,状态为草稿
|
|
80
81
|
* @summary 保存草稿
|
|
@@ -99,6 +100,36 @@ export declare const EvaluationApiAxiosParamCreator: (configuration?: Configurat
|
|
|
99
100
|
* @throws {RequiredError}
|
|
100
101
|
*/
|
|
101
102
|
evaluationWithdraw: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @summary 物业评价导出
|
|
106
|
+
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
107
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
108
|
+
* @param {string} [generateStartTime] 生成开始时间
|
|
109
|
+
* @param {string} [generateEndTime] 生成结束时间
|
|
110
|
+
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
111
|
+
* @param {Array<EvaluationStatusEnum>} [evaluationStatuses] 状态
|
|
112
|
+
* @param {number} [page] 当前页
|
|
113
|
+
* @param {number} [pageSize] 每页条数
|
|
114
|
+
* @param {*} [options] Override http request option.
|
|
115
|
+
* @throws {RequiredError}
|
|
116
|
+
*/
|
|
117
|
+
valuationExport: (searchValue?: string, parkIds?: Array<number>, generateStartTime?: string, generateEndTime?: string, evaluationType?: EvaluationTypeEnum, evaluationStatuses?: Array<EvaluationStatusEnum>, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
118
|
+
/**
|
|
119
|
+
*
|
|
120
|
+
* @summary 物业评价统计
|
|
121
|
+
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
122
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
123
|
+
* @param {string} [generateStartTime] 生成开始时间
|
|
124
|
+
* @param {string} [generateEndTime] 生成结束时间
|
|
125
|
+
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
126
|
+
* @param {Array<EvaluationStatusEnum>} [evaluationStatuses] 状态
|
|
127
|
+
* @param {number} [page] 当前页
|
|
128
|
+
* @param {number} [pageSize] 每页条数
|
|
129
|
+
* @param {*} [options] Override http request option.
|
|
130
|
+
* @throws {RequiredError}
|
|
131
|
+
*/
|
|
132
|
+
valuationStatistics: (searchValue?: string, parkIds?: Array<number>, generateStartTime?: string, generateEndTime?: string, evaluationType?: EvaluationTypeEnum, evaluationStatuses?: Array<EvaluationStatusEnum>, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
102
133
|
};
|
|
103
134
|
/**
|
|
104
135
|
* EvaluationApi - functional programming interface
|
|
@@ -142,7 +173,7 @@ export declare const EvaluationApiFp: (configuration?: Configuration) => {
|
|
|
142
173
|
* 根据关键词、类型、状态等条件分页查询评价列表
|
|
143
174
|
* @summary 分页查询评价列表
|
|
144
175
|
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
145
|
-
* @param {number} [
|
|
176
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
146
177
|
* @param {string} [generateStartTime] 生成开始时间
|
|
147
178
|
* @param {string} [generateEndTime] 生成结束时间
|
|
148
179
|
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
@@ -152,7 +183,7 @@ export declare const EvaluationApiFp: (configuration?: Configuration) => {
|
|
|
152
183
|
* @param {*} [options] Override http request option.
|
|
153
184
|
* @throws {RequiredError}
|
|
154
185
|
*/
|
|
155
|
-
evaluationPageList(searchValue?: string,
|
|
186
|
+
evaluationPageList(searchValue?: string, parkIds?: Array<number>, generateStartTime?: string, generateEndTime?: string, evaluationType?: EvaluationTypeEnum, evaluationStatuses?: Array<EvaluationStatusEnum>, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoEvaluationListVo>>;
|
|
156
187
|
/**
|
|
157
188
|
* 保存评价草稿,状态为草稿
|
|
158
189
|
* @summary 保存草稿
|
|
@@ -177,6 +208,36 @@ export declare const EvaluationApiFp: (configuration?: Configuration) => {
|
|
|
177
208
|
* @throws {RequiredError}
|
|
178
209
|
*/
|
|
179
210
|
evaluationWithdraw(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultBoolean>>;
|
|
211
|
+
/**
|
|
212
|
+
*
|
|
213
|
+
* @summary 物业评价导出
|
|
214
|
+
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
215
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
216
|
+
* @param {string} [generateStartTime] 生成开始时间
|
|
217
|
+
* @param {string} [generateEndTime] 生成结束时间
|
|
218
|
+
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
219
|
+
* @param {Array<EvaluationStatusEnum>} [evaluationStatuses] 状态
|
|
220
|
+
* @param {number} [page] 当前页
|
|
221
|
+
* @param {number} [pageSize] 每页条数
|
|
222
|
+
* @param {*} [options] Override http request option.
|
|
223
|
+
* @throws {RequiredError}
|
|
224
|
+
*/
|
|
225
|
+
valuationExport(searchValue?: string, parkIds?: Array<number>, generateStartTime?: string, generateEndTime?: string, evaluationType?: EvaluationTypeEnum, evaluationStatuses?: Array<EvaluationStatusEnum>, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
226
|
+
/**
|
|
227
|
+
*
|
|
228
|
+
* @summary 物业评价统计
|
|
229
|
+
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
230
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
231
|
+
* @param {string} [generateStartTime] 生成开始时间
|
|
232
|
+
* @param {string} [generateEndTime] 生成结束时间
|
|
233
|
+
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
234
|
+
* @param {Array<EvaluationStatusEnum>} [evaluationStatuses] 状态
|
|
235
|
+
* @param {number} [page] 当前页
|
|
236
|
+
* @param {number} [pageSize] 每页条数
|
|
237
|
+
* @param {*} [options] Override http request option.
|
|
238
|
+
* @throws {RequiredError}
|
|
239
|
+
*/
|
|
240
|
+
valuationStatistics(searchValue?: string, parkIds?: Array<number>, generateStartTime?: string, generateEndTime?: string, evaluationType?: EvaluationTypeEnum, evaluationStatuses?: Array<EvaluationStatusEnum>, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultEvaluationStatisticsVo>>;
|
|
180
241
|
};
|
|
181
242
|
/**
|
|
182
243
|
* EvaluationApi - factory interface
|
|
@@ -247,6 +308,22 @@ export declare const EvaluationApiFactory: (configuration?: Configuration, baseP
|
|
|
247
308
|
* @throws {RequiredError}
|
|
248
309
|
*/
|
|
249
310
|
evaluationWithdraw(requestParameters: EvaluationApiEvaluationWithdrawRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultBoolean>;
|
|
311
|
+
/**
|
|
312
|
+
*
|
|
313
|
+
* @summary 物业评价导出
|
|
314
|
+
* @param {EvaluationApiValuationExportRequest} requestParameters Request parameters.
|
|
315
|
+
* @param {*} [options] Override http request option.
|
|
316
|
+
* @throws {RequiredError}
|
|
317
|
+
*/
|
|
318
|
+
valuationExport(requestParameters?: EvaluationApiValuationExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
319
|
+
/**
|
|
320
|
+
*
|
|
321
|
+
* @summary 物业评价统计
|
|
322
|
+
* @param {EvaluationApiValuationStatisticsRequest} requestParameters Request parameters.
|
|
323
|
+
* @param {*} [options] Override http request option.
|
|
324
|
+
* @throws {RequiredError}
|
|
325
|
+
*/
|
|
326
|
+
valuationStatistics(requestParameters?: EvaluationApiValuationStatisticsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultEvaluationStatisticsVo>;
|
|
250
327
|
};
|
|
251
328
|
/**
|
|
252
329
|
* Request parameters for evaluationApproval operation in EvaluationApi.
|
|
@@ -320,10 +397,10 @@ export interface EvaluationApiEvaluationPageListRequest {
|
|
|
320
397
|
readonly searchValue?: string;
|
|
321
398
|
/**
|
|
322
399
|
* 园区id
|
|
323
|
-
* @type {number}
|
|
400
|
+
* @type {Array<number>}
|
|
324
401
|
* @memberof EvaluationApiEvaluationPageList
|
|
325
402
|
*/
|
|
326
|
-
readonly
|
|
403
|
+
readonly parkIds?: Array<number>;
|
|
327
404
|
/**
|
|
328
405
|
* 生成开始时间
|
|
329
406
|
* @type {string}
|
|
@@ -400,6 +477,116 @@ export interface EvaluationApiEvaluationWithdrawRequest {
|
|
|
400
477
|
*/
|
|
401
478
|
readonly id: number;
|
|
402
479
|
}
|
|
480
|
+
/**
|
|
481
|
+
* Request parameters for valuationExport operation in EvaluationApi.
|
|
482
|
+
* @export
|
|
483
|
+
* @interface EvaluationApiValuationExportRequest
|
|
484
|
+
*/
|
|
485
|
+
export interface EvaluationApiValuationExportRequest {
|
|
486
|
+
/**
|
|
487
|
+
* 关键词(名称、服务商名称、合同编号)
|
|
488
|
+
* @type {string}
|
|
489
|
+
* @memberof EvaluationApiValuationExport
|
|
490
|
+
*/
|
|
491
|
+
readonly searchValue?: string;
|
|
492
|
+
/**
|
|
493
|
+
* 园区id
|
|
494
|
+
* @type {Array<number>}
|
|
495
|
+
* @memberof EvaluationApiValuationExport
|
|
496
|
+
*/
|
|
497
|
+
readonly parkIds?: Array<number>;
|
|
498
|
+
/**
|
|
499
|
+
* 生成开始时间
|
|
500
|
+
* @type {string}
|
|
501
|
+
* @memberof EvaluationApiValuationExport
|
|
502
|
+
*/
|
|
503
|
+
readonly generateStartTime?: string;
|
|
504
|
+
/**
|
|
505
|
+
* 生成结束时间
|
|
506
|
+
* @type {string}
|
|
507
|
+
* @memberof EvaluationApiValuationExport
|
|
508
|
+
*/
|
|
509
|
+
readonly generateEndTime?: string;
|
|
510
|
+
/**
|
|
511
|
+
* 类型
|
|
512
|
+
* @type {EvaluationTypeEnum}
|
|
513
|
+
* @memberof EvaluationApiValuationExport
|
|
514
|
+
*/
|
|
515
|
+
readonly evaluationType?: EvaluationTypeEnum;
|
|
516
|
+
/**
|
|
517
|
+
* 状态
|
|
518
|
+
* @type {Array<EvaluationStatusEnum>}
|
|
519
|
+
* @memberof EvaluationApiValuationExport
|
|
520
|
+
*/
|
|
521
|
+
readonly evaluationStatuses?: Array<EvaluationStatusEnum>;
|
|
522
|
+
/**
|
|
523
|
+
* 当前页
|
|
524
|
+
* @type {number}
|
|
525
|
+
* @memberof EvaluationApiValuationExport
|
|
526
|
+
*/
|
|
527
|
+
readonly page?: number;
|
|
528
|
+
/**
|
|
529
|
+
* 每页条数
|
|
530
|
+
* @type {number}
|
|
531
|
+
* @memberof EvaluationApiValuationExport
|
|
532
|
+
*/
|
|
533
|
+
readonly pageSize?: number;
|
|
534
|
+
}
|
|
535
|
+
/**
|
|
536
|
+
* Request parameters for valuationStatistics operation in EvaluationApi.
|
|
537
|
+
* @export
|
|
538
|
+
* @interface EvaluationApiValuationStatisticsRequest
|
|
539
|
+
*/
|
|
540
|
+
export interface EvaluationApiValuationStatisticsRequest {
|
|
541
|
+
/**
|
|
542
|
+
* 关键词(名称、服务商名称、合同编号)
|
|
543
|
+
* @type {string}
|
|
544
|
+
* @memberof EvaluationApiValuationStatistics
|
|
545
|
+
*/
|
|
546
|
+
readonly searchValue?: string;
|
|
547
|
+
/**
|
|
548
|
+
* 园区id
|
|
549
|
+
* @type {Array<number>}
|
|
550
|
+
* @memberof EvaluationApiValuationStatistics
|
|
551
|
+
*/
|
|
552
|
+
readonly parkIds?: Array<number>;
|
|
553
|
+
/**
|
|
554
|
+
* 生成开始时间
|
|
555
|
+
* @type {string}
|
|
556
|
+
* @memberof EvaluationApiValuationStatistics
|
|
557
|
+
*/
|
|
558
|
+
readonly generateStartTime?: string;
|
|
559
|
+
/**
|
|
560
|
+
* 生成结束时间
|
|
561
|
+
* @type {string}
|
|
562
|
+
* @memberof EvaluationApiValuationStatistics
|
|
563
|
+
*/
|
|
564
|
+
readonly generateEndTime?: string;
|
|
565
|
+
/**
|
|
566
|
+
* 类型
|
|
567
|
+
* @type {EvaluationTypeEnum}
|
|
568
|
+
* @memberof EvaluationApiValuationStatistics
|
|
569
|
+
*/
|
|
570
|
+
readonly evaluationType?: EvaluationTypeEnum;
|
|
571
|
+
/**
|
|
572
|
+
* 状态
|
|
573
|
+
* @type {Array<EvaluationStatusEnum>}
|
|
574
|
+
* @memberof EvaluationApiValuationStatistics
|
|
575
|
+
*/
|
|
576
|
+
readonly evaluationStatuses?: Array<EvaluationStatusEnum>;
|
|
577
|
+
/**
|
|
578
|
+
* 当前页
|
|
579
|
+
* @type {number}
|
|
580
|
+
* @memberof EvaluationApiValuationStatistics
|
|
581
|
+
*/
|
|
582
|
+
readonly page?: number;
|
|
583
|
+
/**
|
|
584
|
+
* 每页条数
|
|
585
|
+
* @type {number}
|
|
586
|
+
* @memberof EvaluationApiValuationStatistics
|
|
587
|
+
*/
|
|
588
|
+
readonly pageSize?: number;
|
|
589
|
+
}
|
|
403
590
|
/**
|
|
404
591
|
* EvaluationApi - object-oriented interface
|
|
405
592
|
* @export
|
|
@@ -479,4 +666,22 @@ export declare class EvaluationApi extends BaseAPI {
|
|
|
479
666
|
* @memberof EvaluationApi
|
|
480
667
|
*/
|
|
481
668
|
evaluationWithdraw(requestParameters: EvaluationApiEvaluationWithdrawRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultBoolean, any, {}>>;
|
|
669
|
+
/**
|
|
670
|
+
*
|
|
671
|
+
* @summary 物业评价导出
|
|
672
|
+
* @param {EvaluationApiValuationExportRequest} requestParameters Request parameters.
|
|
673
|
+
* @param {*} [options] Override http request option.
|
|
674
|
+
* @throws {RequiredError}
|
|
675
|
+
* @memberof EvaluationApi
|
|
676
|
+
*/
|
|
677
|
+
valuationExport(requestParameters?: EvaluationApiValuationExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
678
|
+
/**
|
|
679
|
+
*
|
|
680
|
+
* @summary 物业评价统计
|
|
681
|
+
* @param {EvaluationApiValuationStatisticsRequest} requestParameters Request parameters.
|
|
682
|
+
* @param {*} [options] Override http request option.
|
|
683
|
+
* @throws {RequiredError}
|
|
684
|
+
* @memberof EvaluationApi
|
|
685
|
+
*/
|
|
686
|
+
valuationStatistics(requestParameters?: EvaluationApiValuationStatisticsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultEvaluationStatisticsVo, any, {}>>;
|
|
482
687
|
}
|
|
@@ -172,7 +172,7 @@ const EvaluationApiAxiosParamCreator = function (configuration) {
|
|
|
172
172
|
* 根据关键词、类型、状态等条件分页查询评价列表
|
|
173
173
|
* @summary 分页查询评价列表
|
|
174
174
|
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
175
|
-
* @param {number} [
|
|
175
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
176
176
|
* @param {string} [generateStartTime] 生成开始时间
|
|
177
177
|
* @param {string} [generateEndTime] 生成结束时间
|
|
178
178
|
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
@@ -182,7 +182,7 @@ const EvaluationApiAxiosParamCreator = function (configuration) {
|
|
|
182
182
|
* @param {*} [options] Override http request option.
|
|
183
183
|
* @throws {RequiredError}
|
|
184
184
|
*/
|
|
185
|
-
evaluationPageList: (searchValue_1,
|
|
185
|
+
evaluationPageList: (searchValue_1, parkIds_1, generateStartTime_1, generateEndTime_1, evaluationType_1, evaluationStatuses_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [searchValue_1, parkIds_1, generateStartTime_1, generateEndTime_1, evaluationType_1, evaluationStatuses_1, page_1, pageSize_1, ...args_1], void 0, function* (searchValue, parkIds, generateStartTime, generateEndTime, evaluationType, evaluationStatuses, page, pageSize, options = {}) {
|
|
186
186
|
const localVarPath = `/gizone/evaluation`;
|
|
187
187
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
188
188
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -199,8 +199,8 @@ const EvaluationApiAxiosParamCreator = function (configuration) {
|
|
|
199
199
|
if (searchValue !== undefined) {
|
|
200
200
|
localVarQueryParameter['searchValue'] = searchValue;
|
|
201
201
|
}
|
|
202
|
-
if (
|
|
203
|
-
localVarQueryParameter['
|
|
202
|
+
if (parkIds) {
|
|
203
|
+
localVarQueryParameter['parkIds'] = parkIds;
|
|
204
204
|
}
|
|
205
205
|
if (generateStartTime !== undefined) {
|
|
206
206
|
localVarQueryParameter['generateStartTime'] = (generateStartTime instanceof Date) ?
|
|
@@ -330,6 +330,134 @@ const EvaluationApiAxiosParamCreator = function (configuration) {
|
|
|
330
330
|
options: localVarRequestOptions,
|
|
331
331
|
};
|
|
332
332
|
}),
|
|
333
|
+
/**
|
|
334
|
+
*
|
|
335
|
+
* @summary 物业评价导出
|
|
336
|
+
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
337
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
338
|
+
* @param {string} [generateStartTime] 生成开始时间
|
|
339
|
+
* @param {string} [generateEndTime] 生成结束时间
|
|
340
|
+
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
341
|
+
* @param {Array<EvaluationStatusEnum>} [evaluationStatuses] 状态
|
|
342
|
+
* @param {number} [page] 当前页
|
|
343
|
+
* @param {number} [pageSize] 每页条数
|
|
344
|
+
* @param {*} [options] Override http request option.
|
|
345
|
+
* @throws {RequiredError}
|
|
346
|
+
*/
|
|
347
|
+
valuationExport: (searchValue_1, parkIds_1, generateStartTime_1, generateEndTime_1, evaluationType_1, evaluationStatuses_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [searchValue_1, parkIds_1, generateStartTime_1, generateEndTime_1, evaluationType_1, evaluationStatuses_1, page_1, pageSize_1, ...args_1], void 0, function* (searchValue, parkIds, generateStartTime, generateEndTime, evaluationType, evaluationStatuses, page, pageSize, options = {}) {
|
|
348
|
+
const localVarPath = `/gizone/evaluation/export`;
|
|
349
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
350
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
351
|
+
let baseOptions;
|
|
352
|
+
if (configuration) {
|
|
353
|
+
baseOptions = configuration.baseOptions;
|
|
354
|
+
}
|
|
355
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
356
|
+
const localVarHeaderParameter = {};
|
|
357
|
+
const localVarQueryParameter = {};
|
|
358
|
+
// authentication tokenScheme required
|
|
359
|
+
// http bearer authentication required
|
|
360
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
361
|
+
if (searchValue !== undefined) {
|
|
362
|
+
localVarQueryParameter['searchValue'] = searchValue;
|
|
363
|
+
}
|
|
364
|
+
if (parkIds) {
|
|
365
|
+
localVarQueryParameter['parkIds'] = parkIds;
|
|
366
|
+
}
|
|
367
|
+
if (generateStartTime !== undefined) {
|
|
368
|
+
localVarQueryParameter['generateStartTime'] = (generateStartTime instanceof Date) ?
|
|
369
|
+
generateStartTime.toISOString() :
|
|
370
|
+
generateStartTime;
|
|
371
|
+
}
|
|
372
|
+
if (generateEndTime !== undefined) {
|
|
373
|
+
localVarQueryParameter['generateEndTime'] = (generateEndTime instanceof Date) ?
|
|
374
|
+
generateEndTime.toISOString() :
|
|
375
|
+
generateEndTime;
|
|
376
|
+
}
|
|
377
|
+
if (evaluationType !== undefined) {
|
|
378
|
+
localVarQueryParameter['evaluationType'] = evaluationType;
|
|
379
|
+
}
|
|
380
|
+
if (evaluationStatuses) {
|
|
381
|
+
localVarQueryParameter['evaluationStatuses'] = evaluationStatuses;
|
|
382
|
+
}
|
|
383
|
+
if (page !== undefined) {
|
|
384
|
+
localVarQueryParameter['page'] = page;
|
|
385
|
+
}
|
|
386
|
+
if (pageSize !== undefined) {
|
|
387
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
388
|
+
}
|
|
389
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
390
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
391
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
392
|
+
return {
|
|
393
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
394
|
+
options: localVarRequestOptions,
|
|
395
|
+
};
|
|
396
|
+
}),
|
|
397
|
+
/**
|
|
398
|
+
*
|
|
399
|
+
* @summary 物业评价统计
|
|
400
|
+
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
401
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
402
|
+
* @param {string} [generateStartTime] 生成开始时间
|
|
403
|
+
* @param {string} [generateEndTime] 生成结束时间
|
|
404
|
+
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
405
|
+
* @param {Array<EvaluationStatusEnum>} [evaluationStatuses] 状态
|
|
406
|
+
* @param {number} [page] 当前页
|
|
407
|
+
* @param {number} [pageSize] 每页条数
|
|
408
|
+
* @param {*} [options] Override http request option.
|
|
409
|
+
* @throws {RequiredError}
|
|
410
|
+
*/
|
|
411
|
+
valuationStatistics: (searchValue_1, parkIds_1, generateStartTime_1, generateEndTime_1, evaluationType_1, evaluationStatuses_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [searchValue_1, parkIds_1, generateStartTime_1, generateEndTime_1, evaluationType_1, evaluationStatuses_1, page_1, pageSize_1, ...args_1], void 0, function* (searchValue, parkIds, generateStartTime, generateEndTime, evaluationType, evaluationStatuses, page, pageSize, options = {}) {
|
|
412
|
+
const localVarPath = `/gizone/evaluation/evaluation/statistics`;
|
|
413
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
414
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
415
|
+
let baseOptions;
|
|
416
|
+
if (configuration) {
|
|
417
|
+
baseOptions = configuration.baseOptions;
|
|
418
|
+
}
|
|
419
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
420
|
+
const localVarHeaderParameter = {};
|
|
421
|
+
const localVarQueryParameter = {};
|
|
422
|
+
// authentication tokenScheme required
|
|
423
|
+
// http bearer authentication required
|
|
424
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
425
|
+
if (searchValue !== undefined) {
|
|
426
|
+
localVarQueryParameter['searchValue'] = searchValue;
|
|
427
|
+
}
|
|
428
|
+
if (parkIds) {
|
|
429
|
+
localVarQueryParameter['parkIds'] = parkIds;
|
|
430
|
+
}
|
|
431
|
+
if (generateStartTime !== undefined) {
|
|
432
|
+
localVarQueryParameter['generateStartTime'] = (generateStartTime instanceof Date) ?
|
|
433
|
+
generateStartTime.toISOString() :
|
|
434
|
+
generateStartTime;
|
|
435
|
+
}
|
|
436
|
+
if (generateEndTime !== undefined) {
|
|
437
|
+
localVarQueryParameter['generateEndTime'] = (generateEndTime instanceof Date) ?
|
|
438
|
+
generateEndTime.toISOString() :
|
|
439
|
+
generateEndTime;
|
|
440
|
+
}
|
|
441
|
+
if (evaluationType !== undefined) {
|
|
442
|
+
localVarQueryParameter['evaluationType'] = evaluationType;
|
|
443
|
+
}
|
|
444
|
+
if (evaluationStatuses) {
|
|
445
|
+
localVarQueryParameter['evaluationStatuses'] = evaluationStatuses;
|
|
446
|
+
}
|
|
447
|
+
if (page !== undefined) {
|
|
448
|
+
localVarQueryParameter['page'] = page;
|
|
449
|
+
}
|
|
450
|
+
if (pageSize !== undefined) {
|
|
451
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
452
|
+
}
|
|
453
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
454
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
455
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
456
|
+
return {
|
|
457
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
458
|
+
options: localVarRequestOptions,
|
|
459
|
+
};
|
|
460
|
+
}),
|
|
333
461
|
};
|
|
334
462
|
};
|
|
335
463
|
exports.EvaluationApiAxiosParamCreator = EvaluationApiAxiosParamCreator;
|
|
@@ -409,7 +537,7 @@ const EvaluationApiFp = function (configuration) {
|
|
|
409
537
|
* 根据关键词、类型、状态等条件分页查询评价列表
|
|
410
538
|
* @summary 分页查询评价列表
|
|
411
539
|
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
412
|
-
* @param {number} [
|
|
540
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
413
541
|
* @param {string} [generateStartTime] 生成开始时间
|
|
414
542
|
* @param {string} [generateEndTime] 生成结束时间
|
|
415
543
|
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
@@ -419,10 +547,10 @@ const EvaluationApiFp = function (configuration) {
|
|
|
419
547
|
* @param {*} [options] Override http request option.
|
|
420
548
|
* @throws {RequiredError}
|
|
421
549
|
*/
|
|
422
|
-
evaluationPageList(searchValue,
|
|
550
|
+
evaluationPageList(searchValue, parkIds, generateStartTime, generateEndTime, evaluationType, evaluationStatuses, page, pageSize, options) {
|
|
423
551
|
return __awaiter(this, void 0, void 0, function* () {
|
|
424
552
|
var _a, _b, _c;
|
|
425
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.evaluationPageList(searchValue,
|
|
553
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.evaluationPageList(searchValue, parkIds, generateStartTime, generateEndTime, evaluationType, evaluationStatuses, page, pageSize, options);
|
|
426
554
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
427
555
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EvaluationApi.evaluationPageList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
428
556
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -476,6 +604,52 @@ const EvaluationApiFp = function (configuration) {
|
|
|
476
604
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
477
605
|
});
|
|
478
606
|
},
|
|
607
|
+
/**
|
|
608
|
+
*
|
|
609
|
+
* @summary 物业评价导出
|
|
610
|
+
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
611
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
612
|
+
* @param {string} [generateStartTime] 生成开始时间
|
|
613
|
+
* @param {string} [generateEndTime] 生成结束时间
|
|
614
|
+
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
615
|
+
* @param {Array<EvaluationStatusEnum>} [evaluationStatuses] 状态
|
|
616
|
+
* @param {number} [page] 当前页
|
|
617
|
+
* @param {number} [pageSize] 每页条数
|
|
618
|
+
* @param {*} [options] Override http request option.
|
|
619
|
+
* @throws {RequiredError}
|
|
620
|
+
*/
|
|
621
|
+
valuationExport(searchValue, parkIds, generateStartTime, generateEndTime, evaluationType, evaluationStatuses, page, pageSize, options) {
|
|
622
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
623
|
+
var _a, _b, _c;
|
|
624
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.valuationExport(searchValue, parkIds, generateStartTime, generateEndTime, evaluationType, evaluationStatuses, page, pageSize, options);
|
|
625
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
626
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EvaluationApi.valuationExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
627
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
628
|
+
});
|
|
629
|
+
},
|
|
630
|
+
/**
|
|
631
|
+
*
|
|
632
|
+
* @summary 物业评价统计
|
|
633
|
+
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
634
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
635
|
+
* @param {string} [generateStartTime] 生成开始时间
|
|
636
|
+
* @param {string} [generateEndTime] 生成结束时间
|
|
637
|
+
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
638
|
+
* @param {Array<EvaluationStatusEnum>} [evaluationStatuses] 状态
|
|
639
|
+
* @param {number} [page] 当前页
|
|
640
|
+
* @param {number} [pageSize] 每页条数
|
|
641
|
+
* @param {*} [options] Override http request option.
|
|
642
|
+
* @throws {RequiredError}
|
|
643
|
+
*/
|
|
644
|
+
valuationStatistics(searchValue, parkIds, generateStartTime, generateEndTime, evaluationType, evaluationStatuses, page, pageSize, options) {
|
|
645
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
646
|
+
var _a, _b, _c;
|
|
647
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.valuationStatistics(searchValue, parkIds, generateStartTime, generateEndTime, evaluationType, evaluationStatuses, page, pageSize, options);
|
|
648
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
649
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EvaluationApi.valuationStatistics']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
650
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
651
|
+
});
|
|
652
|
+
},
|
|
479
653
|
};
|
|
480
654
|
};
|
|
481
655
|
exports.EvaluationApiFp = EvaluationApiFp;
|
|
@@ -534,7 +708,7 @@ const EvaluationApiFactory = function (configuration, basePath, axios) {
|
|
|
534
708
|
* @throws {RequiredError}
|
|
535
709
|
*/
|
|
536
710
|
evaluationPageList(requestParameters = {}, options) {
|
|
537
|
-
return localVarFp.evaluationPageList(requestParameters.searchValue, requestParameters.
|
|
711
|
+
return localVarFp.evaluationPageList(requestParameters.searchValue, requestParameters.parkIds, requestParameters.generateStartTime, requestParameters.generateEndTime, requestParameters.evaluationType, requestParameters.evaluationStatuses, requestParameters.page, requestParameters.pageSize, options).then((request) => request(axios, basePath));
|
|
538
712
|
},
|
|
539
713
|
/**
|
|
540
714
|
* 保存评价草稿,状态为草稿
|
|
@@ -566,6 +740,26 @@ const EvaluationApiFactory = function (configuration, basePath, axios) {
|
|
|
566
740
|
evaluationWithdraw(requestParameters, options) {
|
|
567
741
|
return localVarFp.evaluationWithdraw(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
568
742
|
},
|
|
743
|
+
/**
|
|
744
|
+
*
|
|
745
|
+
* @summary 物业评价导出
|
|
746
|
+
* @param {EvaluationApiValuationExportRequest} requestParameters Request parameters.
|
|
747
|
+
* @param {*} [options] Override http request option.
|
|
748
|
+
* @throws {RequiredError}
|
|
749
|
+
*/
|
|
750
|
+
valuationExport(requestParameters = {}, options) {
|
|
751
|
+
return localVarFp.valuationExport(requestParameters.searchValue, requestParameters.parkIds, requestParameters.generateStartTime, requestParameters.generateEndTime, requestParameters.evaluationType, requestParameters.evaluationStatuses, requestParameters.page, requestParameters.pageSize, options).then((request) => request(axios, basePath));
|
|
752
|
+
},
|
|
753
|
+
/**
|
|
754
|
+
*
|
|
755
|
+
* @summary 物业评价统计
|
|
756
|
+
* @param {EvaluationApiValuationStatisticsRequest} requestParameters Request parameters.
|
|
757
|
+
* @param {*} [options] Override http request option.
|
|
758
|
+
* @throws {RequiredError}
|
|
759
|
+
*/
|
|
760
|
+
valuationStatistics(requestParameters = {}, options) {
|
|
761
|
+
return localVarFp.valuationStatistics(requestParameters.searchValue, requestParameters.parkIds, requestParameters.generateStartTime, requestParameters.generateEndTime, requestParameters.evaluationType, requestParameters.evaluationStatuses, requestParameters.page, requestParameters.pageSize, options).then((request) => request(axios, basePath));
|
|
762
|
+
},
|
|
569
763
|
};
|
|
570
764
|
};
|
|
571
765
|
exports.EvaluationApiFactory = EvaluationApiFactory;
|
|
@@ -629,7 +823,7 @@ class EvaluationApi extends base_1.BaseAPI {
|
|
|
629
823
|
* @memberof EvaluationApi
|
|
630
824
|
*/
|
|
631
825
|
evaluationPageList(requestParameters = {}, options) {
|
|
632
|
-
return (0, exports.EvaluationApiFp)(this.configuration).evaluationPageList(requestParameters.searchValue, requestParameters.
|
|
826
|
+
return (0, exports.EvaluationApiFp)(this.configuration).evaluationPageList(requestParameters.searchValue, requestParameters.parkIds, requestParameters.generateStartTime, requestParameters.generateEndTime, requestParameters.evaluationType, requestParameters.evaluationStatuses, requestParameters.page, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
633
827
|
}
|
|
634
828
|
/**
|
|
635
829
|
* 保存评价草稿,状态为草稿
|
|
@@ -664,5 +858,27 @@ class EvaluationApi extends base_1.BaseAPI {
|
|
|
664
858
|
evaluationWithdraw(requestParameters, options) {
|
|
665
859
|
return (0, exports.EvaluationApiFp)(this.configuration).evaluationWithdraw(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
666
860
|
}
|
|
861
|
+
/**
|
|
862
|
+
*
|
|
863
|
+
* @summary 物业评价导出
|
|
864
|
+
* @param {EvaluationApiValuationExportRequest} requestParameters Request parameters.
|
|
865
|
+
* @param {*} [options] Override http request option.
|
|
866
|
+
* @throws {RequiredError}
|
|
867
|
+
* @memberof EvaluationApi
|
|
868
|
+
*/
|
|
869
|
+
valuationExport(requestParameters = {}, options) {
|
|
870
|
+
return (0, exports.EvaluationApiFp)(this.configuration).valuationExport(requestParameters.searchValue, requestParameters.parkIds, requestParameters.generateStartTime, requestParameters.generateEndTime, requestParameters.evaluationType, requestParameters.evaluationStatuses, requestParameters.page, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
871
|
+
}
|
|
872
|
+
/**
|
|
873
|
+
*
|
|
874
|
+
* @summary 物业评价统计
|
|
875
|
+
* @param {EvaluationApiValuationStatisticsRequest} requestParameters Request parameters.
|
|
876
|
+
* @param {*} [options] Override http request option.
|
|
877
|
+
* @throws {RequiredError}
|
|
878
|
+
* @memberof EvaluationApi
|
|
879
|
+
*/
|
|
880
|
+
valuationStatistics(requestParameters = {}, options) {
|
|
881
|
+
return (0, exports.EvaluationApiFp)(this.configuration).valuationStatistics(requestParameters.searchValue, requestParameters.parkIds, requestParameters.generateStartTime, requestParameters.generateEndTime, requestParameters.evaluationType, requestParameters.evaluationStatuses, requestParameters.page, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
882
|
+
}
|
|
667
883
|
}
|
|
668
884
|
exports.EvaluationApi = EvaluationApi;
|