@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
package/.openapi-generator/FILES
CHANGED
|
@@ -244,6 +244,7 @@ models/evaluation-item-add-dto.ts
|
|
|
244
244
|
models/evaluation-item-vo.ts
|
|
245
245
|
models/evaluation-list-vo.ts
|
|
246
246
|
models/evaluation-module-category-vo.ts
|
|
247
|
+
models/evaluation-statistics-vo.ts
|
|
247
248
|
models/evaluation-status-enum.ts
|
|
248
249
|
models/evaluation-submit-dto.ts
|
|
249
250
|
models/evaluation-type-enum.ts
|
|
@@ -327,6 +328,7 @@ models/json-result-evaluation-approval-process-vo.ts
|
|
|
327
328
|
models/json-result-evaluation-approval-record-entity.ts
|
|
328
329
|
models/json-result-evaluation-config-details-vo.ts
|
|
329
330
|
models/json-result-evaluation-details-vo.ts
|
|
331
|
+
models/json-result-evaluation-statistics-vo.ts
|
|
330
332
|
models/json-result-excel-import-result-dtoaccess-whitelist-application-batch-import-template-dto.ts
|
|
331
333
|
models/json-result-excel-import-result-dtocalendar-export-dto.ts
|
|
332
334
|
models/json-result-excel-import-result-dtodisaster-warning-standard-import-dto.ts
|
package/apis/evaluation-api.ts
CHANGED
|
@@ -38,6 +38,8 @@ import type { JsonResultEvaluationApprovalRecordEntity } from '../models';
|
|
|
38
38
|
// @ts-ignore
|
|
39
39
|
import type { JsonResultEvaluationDetailsVo } from '../models';
|
|
40
40
|
// @ts-ignore
|
|
41
|
+
import type { JsonResultEvaluationStatisticsVo } from '../models';
|
|
42
|
+
// @ts-ignore
|
|
41
43
|
import type { JsonResultInteger } from '../models';
|
|
42
44
|
// @ts-ignore
|
|
43
45
|
import type { JsonResultPageDtoEvaluationListVo } from '../models';
|
|
@@ -209,7 +211,7 @@ export const EvaluationApiAxiosParamCreator = function (configuration?: Configur
|
|
|
209
211
|
* 根据关键词、类型、状态等条件分页查询评价列表
|
|
210
212
|
* @summary 分页查询评价列表
|
|
211
213
|
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
212
|
-
* @param {number} [
|
|
214
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
213
215
|
* @param {string} [generateStartTime] 生成开始时间
|
|
214
216
|
* @param {string} [generateEndTime] 生成结束时间
|
|
215
217
|
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
@@ -219,7 +221,7 @@ export const EvaluationApiAxiosParamCreator = function (configuration?: Configur
|
|
|
219
221
|
* @param {*} [options] Override http request option.
|
|
220
222
|
* @throws {RequiredError}
|
|
221
223
|
*/
|
|
222
|
-
evaluationPageList: async (searchValue?: string,
|
|
224
|
+
evaluationPageList: async (searchValue?: string, parkIds?: Array<number>, generateStartTime?: string, generateEndTime?: string, evaluationType?: EvaluationTypeEnum, evaluationStatuses?: Array<EvaluationStatusEnum>, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
223
225
|
const localVarPath = `/gizone/evaluation`;
|
|
224
226
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
225
227
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -240,8 +242,8 @@ export const EvaluationApiAxiosParamCreator = function (configuration?: Configur
|
|
|
240
242
|
localVarQueryParameter['searchValue'] = searchValue;
|
|
241
243
|
}
|
|
242
244
|
|
|
243
|
-
if (
|
|
244
|
-
localVarQueryParameter['
|
|
245
|
+
if (parkIds) {
|
|
246
|
+
localVarQueryParameter['parkIds'] = parkIds;
|
|
245
247
|
}
|
|
246
248
|
|
|
247
249
|
if (generateStartTime !== undefined) {
|
|
@@ -392,6 +394,162 @@ export const EvaluationApiAxiosParamCreator = function (configuration?: Configur
|
|
|
392
394
|
|
|
393
395
|
|
|
394
396
|
|
|
397
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
398
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
399
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
400
|
+
|
|
401
|
+
return {
|
|
402
|
+
url: toPathString(localVarUrlObj),
|
|
403
|
+
options: localVarRequestOptions,
|
|
404
|
+
};
|
|
405
|
+
},
|
|
406
|
+
/**
|
|
407
|
+
*
|
|
408
|
+
* @summary 物业评价导出
|
|
409
|
+
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
410
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
411
|
+
* @param {string} [generateStartTime] 生成开始时间
|
|
412
|
+
* @param {string} [generateEndTime] 生成结束时间
|
|
413
|
+
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
414
|
+
* @param {Array<EvaluationStatusEnum>} [evaluationStatuses] 状态
|
|
415
|
+
* @param {number} [page] 当前页
|
|
416
|
+
* @param {number} [pageSize] 每页条数
|
|
417
|
+
* @param {*} [options] Override http request option.
|
|
418
|
+
* @throws {RequiredError}
|
|
419
|
+
*/
|
|
420
|
+
valuationExport: async (searchValue?: string, parkIds?: Array<number>, generateStartTime?: string, generateEndTime?: string, evaluationType?: EvaluationTypeEnum, evaluationStatuses?: Array<EvaluationStatusEnum>, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
421
|
+
const localVarPath = `/gizone/evaluation/export`;
|
|
422
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
423
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
424
|
+
let baseOptions;
|
|
425
|
+
if (configuration) {
|
|
426
|
+
baseOptions = configuration.baseOptions;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
430
|
+
const localVarHeaderParameter = {} as any;
|
|
431
|
+
const localVarQueryParameter = {} as any;
|
|
432
|
+
|
|
433
|
+
// authentication tokenScheme required
|
|
434
|
+
// http bearer authentication required
|
|
435
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
436
|
+
|
|
437
|
+
if (searchValue !== undefined) {
|
|
438
|
+
localVarQueryParameter['searchValue'] = searchValue;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
if (parkIds) {
|
|
442
|
+
localVarQueryParameter['parkIds'] = parkIds;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
if (generateStartTime !== undefined) {
|
|
446
|
+
localVarQueryParameter['generateStartTime'] = (generateStartTime as any instanceof Date) ?
|
|
447
|
+
(generateStartTime as any).toISOString() :
|
|
448
|
+
generateStartTime;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
if (generateEndTime !== undefined) {
|
|
452
|
+
localVarQueryParameter['generateEndTime'] = (generateEndTime as any instanceof Date) ?
|
|
453
|
+
(generateEndTime as any).toISOString() :
|
|
454
|
+
generateEndTime;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
if (evaluationType !== undefined) {
|
|
458
|
+
localVarQueryParameter['evaluationType'] = evaluationType;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
if (evaluationStatuses) {
|
|
462
|
+
localVarQueryParameter['evaluationStatuses'] = evaluationStatuses;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
if (page !== undefined) {
|
|
466
|
+
localVarQueryParameter['page'] = page;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
if (pageSize !== undefined) {
|
|
470
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
476
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
477
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
478
|
+
|
|
479
|
+
return {
|
|
480
|
+
url: toPathString(localVarUrlObj),
|
|
481
|
+
options: localVarRequestOptions,
|
|
482
|
+
};
|
|
483
|
+
},
|
|
484
|
+
/**
|
|
485
|
+
*
|
|
486
|
+
* @summary 物业评价统计
|
|
487
|
+
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
488
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
489
|
+
* @param {string} [generateStartTime] 生成开始时间
|
|
490
|
+
* @param {string} [generateEndTime] 生成结束时间
|
|
491
|
+
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
492
|
+
* @param {Array<EvaluationStatusEnum>} [evaluationStatuses] 状态
|
|
493
|
+
* @param {number} [page] 当前页
|
|
494
|
+
* @param {number} [pageSize] 每页条数
|
|
495
|
+
* @param {*} [options] Override http request option.
|
|
496
|
+
* @throws {RequiredError}
|
|
497
|
+
*/
|
|
498
|
+
valuationStatistics: async (searchValue?: string, parkIds?: Array<number>, generateStartTime?: string, generateEndTime?: string, evaluationType?: EvaluationTypeEnum, evaluationStatuses?: Array<EvaluationStatusEnum>, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
499
|
+
const localVarPath = `/gizone/evaluation/evaluation/statistics`;
|
|
500
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
501
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
502
|
+
let baseOptions;
|
|
503
|
+
if (configuration) {
|
|
504
|
+
baseOptions = configuration.baseOptions;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
508
|
+
const localVarHeaderParameter = {} as any;
|
|
509
|
+
const localVarQueryParameter = {} as any;
|
|
510
|
+
|
|
511
|
+
// authentication tokenScheme required
|
|
512
|
+
// http bearer authentication required
|
|
513
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
514
|
+
|
|
515
|
+
if (searchValue !== undefined) {
|
|
516
|
+
localVarQueryParameter['searchValue'] = searchValue;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
if (parkIds) {
|
|
520
|
+
localVarQueryParameter['parkIds'] = parkIds;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
if (generateStartTime !== undefined) {
|
|
524
|
+
localVarQueryParameter['generateStartTime'] = (generateStartTime as any instanceof Date) ?
|
|
525
|
+
(generateStartTime as any).toISOString() :
|
|
526
|
+
generateStartTime;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
if (generateEndTime !== undefined) {
|
|
530
|
+
localVarQueryParameter['generateEndTime'] = (generateEndTime as any instanceof Date) ?
|
|
531
|
+
(generateEndTime as any).toISOString() :
|
|
532
|
+
generateEndTime;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
if (evaluationType !== undefined) {
|
|
536
|
+
localVarQueryParameter['evaluationType'] = evaluationType;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
if (evaluationStatuses) {
|
|
540
|
+
localVarQueryParameter['evaluationStatuses'] = evaluationStatuses;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
if (page !== undefined) {
|
|
544
|
+
localVarQueryParameter['page'] = page;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
if (pageSize !== undefined) {
|
|
548
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
|
|
395
553
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
396
554
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
397
555
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -468,7 +626,7 @@ export const EvaluationApiFp = function(configuration?: Configuration) {
|
|
|
468
626
|
* 根据关键词、类型、状态等条件分页查询评价列表
|
|
469
627
|
* @summary 分页查询评价列表
|
|
470
628
|
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
471
|
-
* @param {number} [
|
|
629
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
472
630
|
* @param {string} [generateStartTime] 生成开始时间
|
|
473
631
|
* @param {string} [generateEndTime] 生成结束时间
|
|
474
632
|
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
@@ -478,8 +636,8 @@ export const EvaluationApiFp = function(configuration?: Configuration) {
|
|
|
478
636
|
* @param {*} [options] Override http request option.
|
|
479
637
|
* @throws {RequiredError}
|
|
480
638
|
*/
|
|
481
|
-
async evaluationPageList(searchValue?: string,
|
|
482
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.evaluationPageList(searchValue,
|
|
639
|
+
async 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>> {
|
|
640
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.evaluationPageList(searchValue, parkIds, generateStartTime, generateEndTime, evaluationType, evaluationStatuses, page, pageSize, options);
|
|
483
641
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
484
642
|
const localVarOperationServerBasePath = operationServerMap['EvaluationApi.evaluationPageList']?.[localVarOperationServerIndex]?.url;
|
|
485
643
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -523,6 +681,46 @@ export const EvaluationApiFp = function(configuration?: Configuration) {
|
|
|
523
681
|
const localVarOperationServerBasePath = operationServerMap['EvaluationApi.evaluationWithdraw']?.[localVarOperationServerIndex]?.url;
|
|
524
682
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
525
683
|
},
|
|
684
|
+
/**
|
|
685
|
+
*
|
|
686
|
+
* @summary 物业评价导出
|
|
687
|
+
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
688
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
689
|
+
* @param {string} [generateStartTime] 生成开始时间
|
|
690
|
+
* @param {string} [generateEndTime] 生成结束时间
|
|
691
|
+
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
692
|
+
* @param {Array<EvaluationStatusEnum>} [evaluationStatuses] 状态
|
|
693
|
+
* @param {number} [page] 当前页
|
|
694
|
+
* @param {number} [pageSize] 每页条数
|
|
695
|
+
* @param {*} [options] Override http request option.
|
|
696
|
+
* @throws {RequiredError}
|
|
697
|
+
*/
|
|
698
|
+
async 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>> {
|
|
699
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.valuationExport(searchValue, parkIds, generateStartTime, generateEndTime, evaluationType, evaluationStatuses, page, pageSize, options);
|
|
700
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
701
|
+
const localVarOperationServerBasePath = operationServerMap['EvaluationApi.valuationExport']?.[localVarOperationServerIndex]?.url;
|
|
702
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
703
|
+
},
|
|
704
|
+
/**
|
|
705
|
+
*
|
|
706
|
+
* @summary 物业评价统计
|
|
707
|
+
* @param {string} [searchValue] 关键词(名称、服务商名称、合同编号)
|
|
708
|
+
* @param {Array<number>} [parkIds] 园区id
|
|
709
|
+
* @param {string} [generateStartTime] 生成开始时间
|
|
710
|
+
* @param {string} [generateEndTime] 生成结束时间
|
|
711
|
+
* @param {EvaluationTypeEnum} [evaluationType] 类型
|
|
712
|
+
* @param {Array<EvaluationStatusEnum>} [evaluationStatuses] 状态
|
|
713
|
+
* @param {number} [page] 当前页
|
|
714
|
+
* @param {number} [pageSize] 每页条数
|
|
715
|
+
* @param {*} [options] Override http request option.
|
|
716
|
+
* @throws {RequiredError}
|
|
717
|
+
*/
|
|
718
|
+
async 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>> {
|
|
719
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.valuationStatistics(searchValue, parkIds, generateStartTime, generateEndTime, evaluationType, evaluationStatuses, page, pageSize, options);
|
|
720
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
721
|
+
const localVarOperationServerBasePath = operationServerMap['EvaluationApi.valuationStatistics']?.[localVarOperationServerIndex]?.url;
|
|
722
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
723
|
+
},
|
|
526
724
|
}
|
|
527
725
|
};
|
|
528
726
|
|
|
@@ -581,7 +779,7 @@ export const EvaluationApiFactory = function (configuration?: Configuration, bas
|
|
|
581
779
|
* @throws {RequiredError}
|
|
582
780
|
*/
|
|
583
781
|
evaluationPageList(requestParameters: EvaluationApiEvaluationPageListRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoEvaluationListVo> {
|
|
584
|
-
return localVarFp.evaluationPageList(requestParameters.searchValue, requestParameters.
|
|
782
|
+
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));
|
|
585
783
|
},
|
|
586
784
|
/**
|
|
587
785
|
* 保存评价草稿,状态为草稿
|
|
@@ -613,6 +811,26 @@ export const EvaluationApiFactory = function (configuration?: Configuration, bas
|
|
|
613
811
|
evaluationWithdraw(requestParameters: EvaluationApiEvaluationWithdrawRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultBoolean> {
|
|
614
812
|
return localVarFp.evaluationWithdraw(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
615
813
|
},
|
|
814
|
+
/**
|
|
815
|
+
*
|
|
816
|
+
* @summary 物业评价导出
|
|
817
|
+
* @param {EvaluationApiValuationExportRequest} requestParameters Request parameters.
|
|
818
|
+
* @param {*} [options] Override http request option.
|
|
819
|
+
* @throws {RequiredError}
|
|
820
|
+
*/
|
|
821
|
+
valuationExport(requestParameters: EvaluationApiValuationExportRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
822
|
+
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));
|
|
823
|
+
},
|
|
824
|
+
/**
|
|
825
|
+
*
|
|
826
|
+
* @summary 物业评价统计
|
|
827
|
+
* @param {EvaluationApiValuationStatisticsRequest} requestParameters Request parameters.
|
|
828
|
+
* @param {*} [options] Override http request option.
|
|
829
|
+
* @throws {RequiredError}
|
|
830
|
+
*/
|
|
831
|
+
valuationStatistics(requestParameters: EvaluationApiValuationStatisticsRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultEvaluationStatisticsVo> {
|
|
832
|
+
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));
|
|
833
|
+
},
|
|
616
834
|
};
|
|
617
835
|
};
|
|
618
836
|
|
|
@@ -694,10 +912,10 @@ export interface EvaluationApiEvaluationPageListRequest {
|
|
|
694
912
|
|
|
695
913
|
/**
|
|
696
914
|
* 园区id
|
|
697
|
-
* @type {number}
|
|
915
|
+
* @type {Array<number>}
|
|
698
916
|
* @memberof EvaluationApiEvaluationPageList
|
|
699
917
|
*/
|
|
700
|
-
readonly
|
|
918
|
+
readonly parkIds?: Array<number>
|
|
701
919
|
|
|
702
920
|
/**
|
|
703
921
|
* 生成开始时间
|
|
@@ -784,6 +1002,132 @@ export interface EvaluationApiEvaluationWithdrawRequest {
|
|
|
784
1002
|
readonly id: number
|
|
785
1003
|
}
|
|
786
1004
|
|
|
1005
|
+
/**
|
|
1006
|
+
* Request parameters for valuationExport operation in EvaluationApi.
|
|
1007
|
+
* @export
|
|
1008
|
+
* @interface EvaluationApiValuationExportRequest
|
|
1009
|
+
*/
|
|
1010
|
+
export interface EvaluationApiValuationExportRequest {
|
|
1011
|
+
/**
|
|
1012
|
+
* 关键词(名称、服务商名称、合同编号)
|
|
1013
|
+
* @type {string}
|
|
1014
|
+
* @memberof EvaluationApiValuationExport
|
|
1015
|
+
*/
|
|
1016
|
+
readonly searchValue?: string
|
|
1017
|
+
|
|
1018
|
+
/**
|
|
1019
|
+
* 园区id
|
|
1020
|
+
* @type {Array<number>}
|
|
1021
|
+
* @memberof EvaluationApiValuationExport
|
|
1022
|
+
*/
|
|
1023
|
+
readonly parkIds?: Array<number>
|
|
1024
|
+
|
|
1025
|
+
/**
|
|
1026
|
+
* 生成开始时间
|
|
1027
|
+
* @type {string}
|
|
1028
|
+
* @memberof EvaluationApiValuationExport
|
|
1029
|
+
*/
|
|
1030
|
+
readonly generateStartTime?: string
|
|
1031
|
+
|
|
1032
|
+
/**
|
|
1033
|
+
* 生成结束时间
|
|
1034
|
+
* @type {string}
|
|
1035
|
+
* @memberof EvaluationApiValuationExport
|
|
1036
|
+
*/
|
|
1037
|
+
readonly generateEndTime?: string
|
|
1038
|
+
|
|
1039
|
+
/**
|
|
1040
|
+
* 类型
|
|
1041
|
+
* @type {EvaluationTypeEnum}
|
|
1042
|
+
* @memberof EvaluationApiValuationExport
|
|
1043
|
+
*/
|
|
1044
|
+
readonly evaluationType?: EvaluationTypeEnum
|
|
1045
|
+
|
|
1046
|
+
/**
|
|
1047
|
+
* 状态
|
|
1048
|
+
* @type {Array<EvaluationStatusEnum>}
|
|
1049
|
+
* @memberof EvaluationApiValuationExport
|
|
1050
|
+
*/
|
|
1051
|
+
readonly evaluationStatuses?: Array<EvaluationStatusEnum>
|
|
1052
|
+
|
|
1053
|
+
/**
|
|
1054
|
+
* 当前页
|
|
1055
|
+
* @type {number}
|
|
1056
|
+
* @memberof EvaluationApiValuationExport
|
|
1057
|
+
*/
|
|
1058
|
+
readonly page?: number
|
|
1059
|
+
|
|
1060
|
+
/**
|
|
1061
|
+
* 每页条数
|
|
1062
|
+
* @type {number}
|
|
1063
|
+
* @memberof EvaluationApiValuationExport
|
|
1064
|
+
*/
|
|
1065
|
+
readonly pageSize?: number
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
/**
|
|
1069
|
+
* Request parameters for valuationStatistics operation in EvaluationApi.
|
|
1070
|
+
* @export
|
|
1071
|
+
* @interface EvaluationApiValuationStatisticsRequest
|
|
1072
|
+
*/
|
|
1073
|
+
export interface EvaluationApiValuationStatisticsRequest {
|
|
1074
|
+
/**
|
|
1075
|
+
* 关键词(名称、服务商名称、合同编号)
|
|
1076
|
+
* @type {string}
|
|
1077
|
+
* @memberof EvaluationApiValuationStatistics
|
|
1078
|
+
*/
|
|
1079
|
+
readonly searchValue?: string
|
|
1080
|
+
|
|
1081
|
+
/**
|
|
1082
|
+
* 园区id
|
|
1083
|
+
* @type {Array<number>}
|
|
1084
|
+
* @memberof EvaluationApiValuationStatistics
|
|
1085
|
+
*/
|
|
1086
|
+
readonly parkIds?: Array<number>
|
|
1087
|
+
|
|
1088
|
+
/**
|
|
1089
|
+
* 生成开始时间
|
|
1090
|
+
* @type {string}
|
|
1091
|
+
* @memberof EvaluationApiValuationStatistics
|
|
1092
|
+
*/
|
|
1093
|
+
readonly generateStartTime?: string
|
|
1094
|
+
|
|
1095
|
+
/**
|
|
1096
|
+
* 生成结束时间
|
|
1097
|
+
* @type {string}
|
|
1098
|
+
* @memberof EvaluationApiValuationStatistics
|
|
1099
|
+
*/
|
|
1100
|
+
readonly generateEndTime?: string
|
|
1101
|
+
|
|
1102
|
+
/**
|
|
1103
|
+
* 类型
|
|
1104
|
+
* @type {EvaluationTypeEnum}
|
|
1105
|
+
* @memberof EvaluationApiValuationStatistics
|
|
1106
|
+
*/
|
|
1107
|
+
readonly evaluationType?: EvaluationTypeEnum
|
|
1108
|
+
|
|
1109
|
+
/**
|
|
1110
|
+
* 状态
|
|
1111
|
+
* @type {Array<EvaluationStatusEnum>}
|
|
1112
|
+
* @memberof EvaluationApiValuationStatistics
|
|
1113
|
+
*/
|
|
1114
|
+
readonly evaluationStatuses?: Array<EvaluationStatusEnum>
|
|
1115
|
+
|
|
1116
|
+
/**
|
|
1117
|
+
* 当前页
|
|
1118
|
+
* @type {number}
|
|
1119
|
+
* @memberof EvaluationApiValuationStatistics
|
|
1120
|
+
*/
|
|
1121
|
+
readonly page?: number
|
|
1122
|
+
|
|
1123
|
+
/**
|
|
1124
|
+
* 每页条数
|
|
1125
|
+
* @type {number}
|
|
1126
|
+
* @memberof EvaluationApiValuationStatistics
|
|
1127
|
+
*/
|
|
1128
|
+
readonly pageSize?: number
|
|
1129
|
+
}
|
|
1130
|
+
|
|
787
1131
|
/**
|
|
788
1132
|
* EvaluationApi - object-oriented interface
|
|
789
1133
|
* @export
|
|
@@ -848,7 +1192,7 @@ export class EvaluationApi extends BaseAPI {
|
|
|
848
1192
|
* @memberof EvaluationApi
|
|
849
1193
|
*/
|
|
850
1194
|
public evaluationPageList(requestParameters: EvaluationApiEvaluationPageListRequest = {}, options?: RawAxiosRequestConfig) {
|
|
851
|
-
return EvaluationApiFp(this.configuration).evaluationPageList(requestParameters.searchValue, requestParameters.
|
|
1195
|
+
return 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));
|
|
852
1196
|
}
|
|
853
1197
|
|
|
854
1198
|
/**
|
|
@@ -886,5 +1230,29 @@ export class EvaluationApi extends BaseAPI {
|
|
|
886
1230
|
public evaluationWithdraw(requestParameters: EvaluationApiEvaluationWithdrawRequest, options?: RawAxiosRequestConfig) {
|
|
887
1231
|
return EvaluationApiFp(this.configuration).evaluationWithdraw(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
888
1232
|
}
|
|
1233
|
+
|
|
1234
|
+
/**
|
|
1235
|
+
*
|
|
1236
|
+
* @summary 物业评价导出
|
|
1237
|
+
* @param {EvaluationApiValuationExportRequest} requestParameters Request parameters.
|
|
1238
|
+
* @param {*} [options] Override http request option.
|
|
1239
|
+
* @throws {RequiredError}
|
|
1240
|
+
* @memberof EvaluationApi
|
|
1241
|
+
*/
|
|
1242
|
+
public valuationExport(requestParameters: EvaluationApiValuationExportRequest = {}, options?: RawAxiosRequestConfig) {
|
|
1243
|
+
return 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));
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
/**
|
|
1247
|
+
*
|
|
1248
|
+
* @summary 物业评价统计
|
|
1249
|
+
* @param {EvaluationApiValuationStatisticsRequest} requestParameters Request parameters.
|
|
1250
|
+
* @param {*} [options] Override http request option.
|
|
1251
|
+
* @throws {RequiredError}
|
|
1252
|
+
* @memberof EvaluationApi
|
|
1253
|
+
*/
|
|
1254
|
+
public valuationStatistics(requestParameters: EvaluationApiValuationStatisticsRequest = {}, options?: RawAxiosRequestConfig) {
|
|
1255
|
+
return 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));
|
|
1256
|
+
}
|
|
889
1257
|
}
|
|
890
1258
|
|