@gizone/rrs-client 4.2.9-alpha.677 → 4.2.9-alpha.679

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.
Files changed (38) hide show
  1. package/.openapi-generator/FILES +2 -0
  2. package/apis/energy-cost-analysis-controller-api.ts +92 -24
  3. package/dist/apis/energy-cost-analysis-controller-api.d.ts +40 -10
  4. package/dist/apis/energy-cost-analysis-controller-api.js +84 -22
  5. package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +40 -10
  6. package/dist/esm/apis/energy-cost-analysis-controller-api.js +84 -22
  7. package/dist/esm/models/budget-balance-query-dto.d.ts +8 -7
  8. package/dist/esm/models/czy-budget-balance-vo.d.ts +24 -0
  9. package/dist/esm/models/energy-cost-analysis-query-dto.d.ts +2 -2
  10. package/dist/esm/models/index.d.ts +2 -0
  11. package/dist/esm/models/index.js +2 -0
  12. package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
  13. package/dist/esm/models/json-result-list-park-select-vo.d.ts +62 -0
  14. package/dist/esm/models/json-result-list-park-select-vo.js +14 -0
  15. package/dist/esm/models/park-select-vo.d.ts +30 -0
  16. package/dist/esm/models/park-select-vo.js +14 -0
  17. package/dist/esm/models/sys-user.d.ts +4 -4
  18. package/dist/models/budget-balance-query-dto.d.ts +8 -7
  19. package/dist/models/czy-budget-balance-vo.d.ts +24 -0
  20. package/dist/models/energy-cost-analysis-query-dto.d.ts +2 -2
  21. package/dist/models/index.d.ts +2 -0
  22. package/dist/models/index.js +2 -0
  23. package/dist/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
  24. package/dist/models/json-result-list-park-select-vo.d.ts +62 -0
  25. package/dist/models/json-result-list-park-select-vo.js +15 -0
  26. package/dist/models/park-select-vo.d.ts +30 -0
  27. package/dist/models/park-select-vo.js +15 -0
  28. package/dist/models/sys-user.d.ts +4 -4
  29. package/models/budget-balance-query-dto.ts +12 -7
  30. package/models/czy-budget-balance-vo.ts +24 -0
  31. package/models/energy-cost-analysis-query-dto.ts +2 -2
  32. package/models/index.ts +2 -0
  33. package/models/ipage-energy-cost-record-info-vo.ts +4 -4
  34. package/models/json-result-list-park-select-vo.ts +72 -0
  35. package/models/park-select-vo.ts +36 -0
  36. package/models/sys-user.ts +4 -4
  37. package/ossutil.log +1221 -1221
  38. package/package.json +1 -1
@@ -345,6 +345,7 @@ models/json-result-list-maintenance-standard-entity.ts
345
345
  models/json-result-list-mdm-increment-vendor-bank-accounts-vo.ts
346
346
  models/json-result-list-mdm-increment-vendors-vo.ts
347
347
  models/json-result-list-park-list-dto.ts
348
+ models/json-result-list-park-select-vo.ts
348
349
  models/json-result-list-plan-calendar-list-vo.ts
349
350
  models/json-result-list-plan-calendar-vo.ts
350
351
  models/json-result-list-reimbursement-bill-payer-vo.ts
@@ -504,6 +505,7 @@ models/park-info-edit-vo.ts
504
505
  models/park-list-dto.ts
505
506
  models/park-plat-form-enum.ts
506
507
  models/park-push-settings-add-bo.ts
508
+ models/park-select-vo.ts
507
509
  models/park-settings-details-dto.ts
508
510
  models/park-settings-vo.ts
509
511
  models/park.ts
@@ -35,6 +35,8 @@ import type { JsonResultListEnergyCostAnalysisListVO } from '../models';
35
35
  import type { JsonResultListEnergyCostTrendVO } from '../models';
36
36
  // @ts-ignore
37
37
  import type { JsonResultListEnergyCostTwoListVO } from '../models';
38
+ // @ts-ignore
39
+ import type { JsonResultListParkSelectVO } from '../models';
38
40
  /**
39
41
  * EnergyCostAnalysisControllerApi - axios parameter creator
40
42
  * @export
@@ -84,7 +86,7 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
84
86
  /**
85
87
  * 获取账单分析列表数据
86
88
  * @summary 分析列表数据-导出
87
- * @param {string} billMonth 账单月,格式:yyyy-MM
89
+ * @param {string} billMonths 账单月,格式:yyyy-MM
88
90
  * @param {string} energyTypes 能源类型列表
89
91
  * @param {string} [parkIds] 园区ID列表
90
92
  * @param {string} [scenarios] 场景来源
@@ -98,9 +100,9 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
98
100
  * @param {*} [options] Override http request option.
99
101
  * @throws {RequiredError}
100
102
  */
101
- getAnalysisListExport: async (billMonth: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
102
- // verify required parameter 'billMonth' is not null or undefined
103
- assertParamExists('getAnalysisListExport', 'billMonth', billMonth)
103
+ getAnalysisListExport: async (billMonths: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
104
+ // verify required parameter 'billMonths' is not null or undefined
105
+ assertParamExists('getAnalysisListExport', 'billMonths', billMonths)
104
106
  // verify required parameter 'energyTypes' is not null or undefined
105
107
  assertParamExists('getAnalysisListExport', 'energyTypes', energyTypes)
106
108
  const localVarPath = `/gizone/energy/cost/analysis/list/export`;
@@ -119,8 +121,8 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
119
121
  // http bearer authentication required
120
122
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
121
123
 
122
- if (billMonth !== undefined) {
123
- localVarQueryParameter['billMonth'] = billMonth;
124
+ if (billMonths !== undefined) {
125
+ localVarQueryParameter['billMonths'] = billMonths;
124
126
  }
125
127
 
126
128
  if (energyTypes !== undefined) {
@@ -337,7 +339,7 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
337
339
  /**
338
340
  * 二级面板
339
341
  * @summary 二级面板-列表导出
340
- * @param {string} billMonth 账单月,格式:yyyy-MM
342
+ * @param {string} billMonths 账单月,格式:yyyy-MM
341
343
  * @param {string} energyTypes 能源类型列表
342
344
  * @param {string} [parkIds] 园区ID列表
343
345
  * @param {string} [scenarios] 场景来源
@@ -351,9 +353,9 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
351
353
  * @param {*} [options] Override http request option.
352
354
  * @throws {RequiredError}
353
355
  */
354
- twoListExport: async (billMonth: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
355
- // verify required parameter 'billMonth' is not null or undefined
356
- assertParamExists('twoListExport', 'billMonth', billMonth)
356
+ twoListExport: async (billMonths: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
357
+ // verify required parameter 'billMonths' is not null or undefined
358
+ assertParamExists('twoListExport', 'billMonths', billMonths)
357
359
  // verify required parameter 'energyTypes' is not null or undefined
358
360
  assertParamExists('twoListExport', 'energyTypes', energyTypes)
359
361
  const localVarPath = `/gizone/energy/cost/analysis/two-list/export`;
@@ -372,8 +374,8 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
372
374
  // http bearer authentication required
373
375
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
374
376
 
375
- if (billMonth !== undefined) {
376
- localVarQueryParameter['billMonth'] = billMonth;
377
+ if (billMonths !== undefined) {
378
+ localVarQueryParameter['billMonths'] = billMonths;
377
379
  }
378
380
 
379
381
  if (energyTypes !== undefined) {
@@ -418,6 +420,40 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
418
420
 
419
421
 
420
422
 
423
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
424
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
425
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
426
+
427
+ return {
428
+ url: toPathString(localVarUrlObj),
429
+ options: localVarRequestOptions,
430
+ };
431
+ },
432
+ /**
433
+ * 二级面板
434
+ * @summary 二级面板-获取下拉选项的园区
435
+ * @param {*} [options] Override http request option.
436
+ * @throws {RequiredError}
437
+ */
438
+ twoListPark: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
439
+ const localVarPath = `/gizone/energy/cost/analysis/two-list/park`;
440
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
441
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
442
+ let baseOptions;
443
+ if (configuration) {
444
+ baseOptions = configuration.baseOptions;
445
+ }
446
+
447
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
448
+ const localVarHeaderParameter = {} as any;
449
+ const localVarQueryParameter = {} as any;
450
+
451
+ // authentication tokenScheme required
452
+ // http bearer authentication required
453
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
454
+
455
+
456
+
421
457
  setSearchParams(localVarUrlObj, localVarQueryParameter);
422
458
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
423
459
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -613,7 +649,7 @@ export const EnergyCostAnalysisControllerApiFp = function(configuration?: Config
613
649
  /**
614
650
  * 获取账单分析列表数据
615
651
  * @summary 分析列表数据-导出
616
- * @param {string} billMonth 账单月,格式:yyyy-MM
652
+ * @param {string} billMonths 账单月,格式:yyyy-MM
617
653
  * @param {string} energyTypes 能源类型列表
618
654
  * @param {string} [parkIds] 园区ID列表
619
655
  * @param {string} [scenarios] 场景来源
@@ -627,8 +663,8 @@ export const EnergyCostAnalysisControllerApiFp = function(configuration?: Config
627
663
  * @param {*} [options] Override http request option.
628
664
  * @throws {RequiredError}
629
665
  */
630
- async getAnalysisListExport(billMonth: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
631
- const localVarAxiosArgs = await localVarAxiosParamCreator.getAnalysisListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
666
+ async getAnalysisListExport(billMonths: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
667
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getAnalysisListExport(billMonths, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
632
668
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
633
669
  const localVarOperationServerBasePath = operationServerMap['EnergyCostAnalysisControllerApi.getAnalysisListExport']?.[localVarOperationServerIndex]?.url;
634
670
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -688,7 +724,7 @@ export const EnergyCostAnalysisControllerApiFp = function(configuration?: Config
688
724
  /**
689
725
  * 二级面板
690
726
  * @summary 二级面板-列表导出
691
- * @param {string} billMonth 账单月,格式:yyyy-MM
727
+ * @param {string} billMonths 账单月,格式:yyyy-MM
692
728
  * @param {string} energyTypes 能源类型列表
693
729
  * @param {string} [parkIds] 园区ID列表
694
730
  * @param {string} [scenarios] 场景来源
@@ -702,12 +738,24 @@ export const EnergyCostAnalysisControllerApiFp = function(configuration?: Config
702
738
  * @param {*} [options] Override http request option.
703
739
  * @throws {RequiredError}
704
740
  */
705
- async twoListExport(billMonth: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
706
- const localVarAxiosArgs = await localVarAxiosParamCreator.twoListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
741
+ async twoListExport(billMonths: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
742
+ const localVarAxiosArgs = await localVarAxiosParamCreator.twoListExport(billMonths, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
707
743
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
708
744
  const localVarOperationServerBasePath = operationServerMap['EnergyCostAnalysisControllerApi.twoListExport']?.[localVarOperationServerIndex]?.url;
709
745
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
710
746
  },
747
+ /**
748
+ * 二级面板
749
+ * @summary 二级面板-获取下拉选项的园区
750
+ * @param {*} [options] Override http request option.
751
+ * @throws {RequiredError}
752
+ */
753
+ async twoListPark(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListParkSelectVO>> {
754
+ const localVarAxiosArgs = await localVarAxiosParamCreator.twoListPark(options);
755
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
756
+ const localVarOperationServerBasePath = operationServerMap['EnergyCostAnalysisControllerApi.twoListPark']?.[localVarOperationServerIndex]?.url;
757
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
758
+ },
711
759
  /**
712
760
  * 二级面板
713
761
  * @summary 二级面板-单平单价分析
@@ -788,7 +836,7 @@ export const EnergyCostAnalysisControllerApiFactory = function (configuration?:
788
836
  * @throws {RequiredError}
789
837
  */
790
838
  getAnalysisListExport(requestParameters: EnergyCostAnalysisControllerApiGetAnalysisListExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
791
- return localVarFp.getAnalysisListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(axios, basePath));
839
+ return localVarFp.getAnalysisListExport(requestParameters.billMonths, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(axios, basePath));
792
840
  },
793
841
  /**
794
842
  * 获取当年各场景的用量趋势图数据
@@ -838,7 +886,16 @@ export const EnergyCostAnalysisControllerApiFactory = function (configuration?:
838
886
  * @throws {RequiredError}
839
887
  */
840
888
  twoListExport(requestParameters: EnergyCostAnalysisControllerApiTwoListExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
841
- return localVarFp.twoListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(axios, basePath));
889
+ return localVarFp.twoListExport(requestParameters.billMonths, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(axios, basePath));
890
+ },
891
+ /**
892
+ * 二级面板
893
+ * @summary 二级面板-获取下拉选项的园区
894
+ * @param {*} [options] Override http request option.
895
+ * @throws {RequiredError}
896
+ */
897
+ twoListPark(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListParkSelectVO> {
898
+ return localVarFp.twoListPark(options).then((request) => request(axios, basePath));
842
899
  },
843
900
  /**
844
901
  * 二级面板
@@ -908,7 +965,7 @@ export interface EnergyCostAnalysisControllerApiGetAnalysisListExportRequest {
908
965
  * @type {string}
909
966
  * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
910
967
  */
911
- readonly billMonth: string
968
+ readonly billMonths: string
912
969
 
913
970
  /**
914
971
  * 能源类型列表
@@ -1048,7 +1105,7 @@ export interface EnergyCostAnalysisControllerApiTwoListExportRequest {
1048
1105
  * @type {string}
1049
1106
  * @memberof EnergyCostAnalysisControllerApiTwoListExport
1050
1107
  */
1051
- readonly billMonth: string
1108
+ readonly billMonths: string
1052
1109
 
1053
1110
  /**
1054
1111
  * 能源类型列表
@@ -1205,7 +1262,7 @@ export class EnergyCostAnalysisControllerApi extends BaseAPI {
1205
1262
  * @memberof EnergyCostAnalysisControllerApi
1206
1263
  */
1207
1264
  public getAnalysisListExport(requestParameters: EnergyCostAnalysisControllerApiGetAnalysisListExportRequest, options?: RawAxiosRequestConfig) {
1208
- return EnergyCostAnalysisControllerApiFp(this.configuration).getAnalysisListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(this.axios, this.basePath));
1265
+ return EnergyCostAnalysisControllerApiFp(this.configuration).getAnalysisListExport(requestParameters.billMonths, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(this.axios, this.basePath));
1209
1266
  }
1210
1267
 
1211
1268
  /**
@@ -1265,7 +1322,18 @@ export class EnergyCostAnalysisControllerApi extends BaseAPI {
1265
1322
  * @memberof EnergyCostAnalysisControllerApi
1266
1323
  */
1267
1324
  public twoListExport(requestParameters: EnergyCostAnalysisControllerApiTwoListExportRequest, options?: RawAxiosRequestConfig) {
1268
- return EnergyCostAnalysisControllerApiFp(this.configuration).twoListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(this.axios, this.basePath));
1325
+ return EnergyCostAnalysisControllerApiFp(this.configuration).twoListExport(requestParameters.billMonths, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(this.axios, this.basePath));
1326
+ }
1327
+
1328
+ /**
1329
+ * 二级面板
1330
+ * @summary 二级面板-获取下拉选项的园区
1331
+ * @param {*} [options] Override http request option.
1332
+ * @throws {RequiredError}
1333
+ * @memberof EnergyCostAnalysisControllerApi
1334
+ */
1335
+ public twoListPark(options?: RawAxiosRequestConfig) {
1336
+ return EnergyCostAnalysisControllerApiFp(this.configuration).twoListPark(options).then((request) => request(this.axios, this.basePath));
1269
1337
  }
1270
1338
 
1271
1339
  /**
@@ -19,6 +19,7 @@ import type { JsonResultEnergyCostUnitPriceAnalysisVO } from '../models';
19
19
  import type { JsonResultListEnergyCostAnalysisListVO } from '../models';
20
20
  import type { JsonResultListEnergyCostTrendVO } from '../models';
21
21
  import type { JsonResultListEnergyCostTwoListVO } from '../models';
22
+ import type { JsonResultListParkSelectVO } from '../models';
22
23
  /**
23
24
  * EnergyCostAnalysisControllerApi - axios parameter creator
24
25
  * @export
@@ -35,7 +36,7 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
35
36
  /**
36
37
  * 获取账单分析列表数据
37
38
  * @summary 分析列表数据-导出
38
- * @param {string} billMonth 账单月,格式:yyyy-MM
39
+ * @param {string} billMonths 账单月,格式:yyyy-MM
39
40
  * @param {string} energyTypes 能源类型列表
40
41
  * @param {string} [parkIds] 园区ID列表
41
42
  * @param {string} [scenarios] 场景来源
@@ -49,7 +50,7 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
49
50
  * @param {*} [options] Override http request option.
50
51
  * @throws {RequiredError}
51
52
  */
52
- getAnalysisListExport: (billMonth: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
53
+ getAnalysisListExport: (billMonths: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
53
54
  /**
54
55
  * 获取当年各场景的用量趋势图数据
55
56
  * @summary 用量趋势分析
@@ -85,7 +86,7 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
85
86
  /**
86
87
  * 二级面板
87
88
  * @summary 二级面板-列表导出
88
- * @param {string} billMonth 账单月,格式:yyyy-MM
89
+ * @param {string} billMonths 账单月,格式:yyyy-MM
89
90
  * @param {string} energyTypes 能源类型列表
90
91
  * @param {string} [parkIds] 园区ID列表
91
92
  * @param {string} [scenarios] 场景来源
@@ -99,7 +100,14 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
99
100
  * @param {*} [options] Override http request option.
100
101
  * @throws {RequiredError}
101
102
  */
102
- twoListExport: (billMonth: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
103
+ twoListExport: (billMonths: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
104
+ /**
105
+ * 二级面板
106
+ * @summary 二级面板-获取下拉选项的园区
107
+ * @param {*} [options] Override http request option.
108
+ * @throws {RequiredError}
109
+ */
110
+ twoListPark: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
103
111
  /**
104
112
  * 二级面板
105
113
  * @summary 二级面板-单平单价分析
@@ -149,7 +157,7 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
149
157
  /**
150
158
  * 获取账单分析列表数据
151
159
  * @summary 分析列表数据-导出
152
- * @param {string} billMonth 账单月,格式:yyyy-MM
160
+ * @param {string} billMonths 账单月,格式:yyyy-MM
153
161
  * @param {string} energyTypes 能源类型列表
154
162
  * @param {string} [parkIds] 园区ID列表
155
163
  * @param {string} [scenarios] 场景来源
@@ -163,7 +171,7 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
163
171
  * @param {*} [options] Override http request option.
164
172
  * @throws {RequiredError}
165
173
  */
166
- getAnalysisListExport(billMonth: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
174
+ getAnalysisListExport(billMonths: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
167
175
  /**
168
176
  * 获取当年各场景的用量趋势图数据
169
177
  * @summary 用量趋势分析
@@ -199,7 +207,7 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
199
207
  /**
200
208
  * 二级面板
201
209
  * @summary 二级面板-列表导出
202
- * @param {string} billMonth 账单月,格式:yyyy-MM
210
+ * @param {string} billMonths 账单月,格式:yyyy-MM
203
211
  * @param {string} energyTypes 能源类型列表
204
212
  * @param {string} [parkIds] 园区ID列表
205
213
  * @param {string} [scenarios] 场景来源
@@ -213,7 +221,14 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
213
221
  * @param {*} [options] Override http request option.
214
222
  * @throws {RequiredError}
215
223
  */
216
- twoListExport(billMonth: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
224
+ twoListExport(billMonths: string, energyTypes: string, parkIds?: string, scenarios?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
225
+ /**
226
+ * 二级面板
227
+ * @summary 二级面板-获取下拉选项的园区
228
+ * @param {*} [options] Override http request option.
229
+ * @throws {RequiredError}
230
+ */
231
+ twoListPark(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListParkSelectVO>>;
217
232
  /**
218
233
  * 二级面板
219
234
  * @summary 二级面板-单平单价分析
@@ -308,6 +323,13 @@ export declare const EnergyCostAnalysisControllerApiFactory: (configuration?: Co
308
323
  * @throws {RequiredError}
309
324
  */
310
325
  twoListExport(requestParameters: EnergyCostAnalysisControllerApiTwoListExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
326
+ /**
327
+ * 二级面板
328
+ * @summary 二级面板-获取下拉选项的园区
329
+ * @param {*} [options] Override http request option.
330
+ * @throws {RequiredError}
331
+ */
332
+ twoListPark(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListParkSelectVO>;
311
333
  /**
312
334
  * 二级面板
313
335
  * @summary 二级面板-单平单价分析
@@ -365,7 +387,7 @@ export interface EnergyCostAnalysisControllerApiGetAnalysisListExportRequest {
365
387
  * @type {string}
366
388
  * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
367
389
  */
368
- readonly billMonth: string;
390
+ readonly billMonths: string;
369
391
  /**
370
392
  * 能源类型列表
371
393
  * @type {string}
@@ -490,7 +512,7 @@ export interface EnergyCostAnalysisControllerApiTwoListExportRequest {
490
512
  * @type {string}
491
513
  * @memberof EnergyCostAnalysisControllerApiTwoListExport
492
514
  */
493
- readonly billMonth: string;
515
+ readonly billMonths: string;
494
516
  /**
495
517
  * 能源类型列表
496
518
  * @type {string}
@@ -674,6 +696,14 @@ export declare class EnergyCostAnalysisControllerApi extends BaseAPI {
674
696
  * @memberof EnergyCostAnalysisControllerApi
675
697
  */
676
698
  twoListExport(requestParameters: EnergyCostAnalysisControllerApiTwoListExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
699
+ /**
700
+ * 二级面板
701
+ * @summary 二级面板-获取下拉选项的园区
702
+ * @param {*} [options] Override http request option.
703
+ * @throws {RequiredError}
704
+ * @memberof EnergyCostAnalysisControllerApi
705
+ */
706
+ twoListPark(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListParkSelectVO, any, {}>>;
677
707
  /**
678
708
  * 二级面板
679
709
  * @summary 二级面板-单平单价分析
@@ -71,7 +71,7 @@ const EnergyCostAnalysisControllerApiAxiosParamCreator = function (configuration
71
71
  /**
72
72
  * 获取账单分析列表数据
73
73
  * @summary 分析列表数据-导出
74
- * @param {string} billMonth 账单月,格式:yyyy-MM
74
+ * @param {string} billMonths 账单月,格式:yyyy-MM
75
75
  * @param {string} energyTypes 能源类型列表
76
76
  * @param {string} [parkIds] 园区ID列表
77
77
  * @param {string} [scenarios] 场景来源
@@ -85,9 +85,9 @@ const EnergyCostAnalysisControllerApiAxiosParamCreator = function (configuration
85
85
  * @param {*} [options] Override http request option.
86
86
  * @throws {RequiredError}
87
87
  */
88
- getAnalysisListExport: (billMonth_1, energyTypes_1, parkIds_1, scenarios_1, startTime_1, endTime_1, srmAreaCodes_1, srmXwCodes_1, srmCenterCodes_1, plannedStartTime_1, plannedEndTime_1, ...args_1) => __awaiter(this, [billMonth_1, energyTypes_1, parkIds_1, scenarios_1, startTime_1, endTime_1, srmAreaCodes_1, srmXwCodes_1, srmCenterCodes_1, plannedStartTime_1, plannedEndTime_1, ...args_1], void 0, function* (billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options = {}) {
89
- // verify required parameter 'billMonth' is not null or undefined
90
- (0, common_1.assertParamExists)('getAnalysisListExport', 'billMonth', billMonth);
88
+ getAnalysisListExport: (billMonths_1, energyTypes_1, parkIds_1, scenarios_1, startTime_1, endTime_1, srmAreaCodes_1, srmXwCodes_1, srmCenterCodes_1, plannedStartTime_1, plannedEndTime_1, ...args_1) => __awaiter(this, [billMonths_1, energyTypes_1, parkIds_1, scenarios_1, startTime_1, endTime_1, srmAreaCodes_1, srmXwCodes_1, srmCenterCodes_1, plannedStartTime_1, plannedEndTime_1, ...args_1], void 0, function* (billMonths, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options = {}) {
89
+ // verify required parameter 'billMonths' is not null or undefined
90
+ (0, common_1.assertParamExists)('getAnalysisListExport', 'billMonths', billMonths);
91
91
  // verify required parameter 'energyTypes' is not null or undefined
92
92
  (0, common_1.assertParamExists)('getAnalysisListExport', 'energyTypes', energyTypes);
93
93
  const localVarPath = `/gizone/energy/cost/analysis/list/export`;
@@ -103,8 +103,8 @@ const EnergyCostAnalysisControllerApiAxiosParamCreator = function (configuration
103
103
  // authentication tokenScheme required
104
104
  // http bearer authentication required
105
105
  yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
106
- if (billMonth !== undefined) {
107
- localVarQueryParameter['billMonth'] = billMonth;
106
+ if (billMonths !== undefined) {
107
+ localVarQueryParameter['billMonths'] = billMonths;
108
108
  }
109
109
  if (energyTypes !== undefined) {
110
110
  localVarQueryParameter['energyTypes'] = energyTypes;
@@ -279,7 +279,7 @@ const EnergyCostAnalysisControllerApiAxiosParamCreator = function (configuration
279
279
  /**
280
280
  * 二级面板
281
281
  * @summary 二级面板-列表导出
282
- * @param {string} billMonth 账单月,格式:yyyy-MM
282
+ * @param {string} billMonths 账单月,格式:yyyy-MM
283
283
  * @param {string} energyTypes 能源类型列表
284
284
  * @param {string} [parkIds] 园区ID列表
285
285
  * @param {string} [scenarios] 场景来源
@@ -293,9 +293,9 @@ const EnergyCostAnalysisControllerApiAxiosParamCreator = function (configuration
293
293
  * @param {*} [options] Override http request option.
294
294
  * @throws {RequiredError}
295
295
  */
296
- twoListExport: (billMonth_1, energyTypes_1, parkIds_1, scenarios_1, startTime_1, endTime_1, srmAreaCodes_1, srmXwCodes_1, srmCenterCodes_1, plannedStartTime_1, plannedEndTime_1, ...args_1) => __awaiter(this, [billMonth_1, energyTypes_1, parkIds_1, scenarios_1, startTime_1, endTime_1, srmAreaCodes_1, srmXwCodes_1, srmCenterCodes_1, plannedStartTime_1, plannedEndTime_1, ...args_1], void 0, function* (billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options = {}) {
297
- // verify required parameter 'billMonth' is not null or undefined
298
- (0, common_1.assertParamExists)('twoListExport', 'billMonth', billMonth);
296
+ twoListExport: (billMonths_1, energyTypes_1, parkIds_1, scenarios_1, startTime_1, endTime_1, srmAreaCodes_1, srmXwCodes_1, srmCenterCodes_1, plannedStartTime_1, plannedEndTime_1, ...args_1) => __awaiter(this, [billMonths_1, energyTypes_1, parkIds_1, scenarios_1, startTime_1, endTime_1, srmAreaCodes_1, srmXwCodes_1, srmCenterCodes_1, plannedStartTime_1, plannedEndTime_1, ...args_1], void 0, function* (billMonths, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options = {}) {
297
+ // verify required parameter 'billMonths' is not null or undefined
298
+ (0, common_1.assertParamExists)('twoListExport', 'billMonths', billMonths);
299
299
  // verify required parameter 'energyTypes' is not null or undefined
300
300
  (0, common_1.assertParamExists)('twoListExport', 'energyTypes', energyTypes);
301
301
  const localVarPath = `/gizone/energy/cost/analysis/two-list/export`;
@@ -311,8 +311,8 @@ const EnergyCostAnalysisControllerApiAxiosParamCreator = function (configuration
311
311
  // authentication tokenScheme required
312
312
  // http bearer authentication required
313
313
  yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
314
- if (billMonth !== undefined) {
315
- localVarQueryParameter['billMonth'] = billMonth;
314
+ if (billMonths !== undefined) {
315
+ localVarQueryParameter['billMonths'] = billMonths;
316
316
  }
317
317
  if (energyTypes !== undefined) {
318
318
  localVarQueryParameter['energyTypes'] = energyTypes;
@@ -352,6 +352,34 @@ const EnergyCostAnalysisControllerApiAxiosParamCreator = function (configuration
352
352
  options: localVarRequestOptions,
353
353
  };
354
354
  }),
355
+ /**
356
+ * 二级面板
357
+ * @summary 二级面板-获取下拉选项的园区
358
+ * @param {*} [options] Override http request option.
359
+ * @throws {RequiredError}
360
+ */
361
+ twoListPark: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
362
+ const localVarPath = `/gizone/energy/cost/analysis/two-list/park`;
363
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
364
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
365
+ let baseOptions;
366
+ if (configuration) {
367
+ baseOptions = configuration.baseOptions;
368
+ }
369
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
370
+ const localVarHeaderParameter = {};
371
+ const localVarQueryParameter = {};
372
+ // authentication tokenScheme required
373
+ // http bearer authentication required
374
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
375
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
376
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
377
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
378
+ return {
379
+ url: (0, common_1.toPathString)(localVarUrlObj),
380
+ options: localVarRequestOptions,
381
+ };
382
+ }),
355
383
  /**
356
384
  * 二级面板
357
385
  * @summary 二级面板-单平单价分析
@@ -513,7 +541,7 @@ const EnergyCostAnalysisControllerApiFp = function (configuration) {
513
541
  /**
514
542
  * 获取账单分析列表数据
515
543
  * @summary 分析列表数据-导出
516
- * @param {string} billMonth 账单月,格式:yyyy-MM
544
+ * @param {string} billMonths 账单月,格式:yyyy-MM
517
545
  * @param {string} energyTypes 能源类型列表
518
546
  * @param {string} [parkIds] 园区ID列表
519
547
  * @param {string} [scenarios] 场景来源
@@ -527,10 +555,10 @@ const EnergyCostAnalysisControllerApiFp = function (configuration) {
527
555
  * @param {*} [options] Override http request option.
528
556
  * @throws {RequiredError}
529
557
  */
530
- getAnalysisListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options) {
558
+ getAnalysisListExport(billMonths, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options) {
531
559
  return __awaiter(this, void 0, void 0, function* () {
532
560
  var _a, _b, _c;
533
- const localVarAxiosArgs = yield localVarAxiosParamCreator.getAnalysisListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
561
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getAnalysisListExport(billMonths, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
534
562
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
535
563
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EnergyCostAnalysisControllerApi.getAnalysisListExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
536
564
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -603,7 +631,7 @@ const EnergyCostAnalysisControllerApiFp = function (configuration) {
603
631
  /**
604
632
  * 二级面板
605
633
  * @summary 二级面板-列表导出
606
- * @param {string} billMonth 账单月,格式:yyyy-MM
634
+ * @param {string} billMonths 账单月,格式:yyyy-MM
607
635
  * @param {string} energyTypes 能源类型列表
608
636
  * @param {string} [parkIds] 园区ID列表
609
637
  * @param {string} [scenarios] 场景来源
@@ -617,15 +645,30 @@ const EnergyCostAnalysisControllerApiFp = function (configuration) {
617
645
  * @param {*} [options] Override http request option.
618
646
  * @throws {RequiredError}
619
647
  */
620
- twoListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options) {
648
+ twoListExport(billMonths, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options) {
621
649
  return __awaiter(this, void 0, void 0, function* () {
622
650
  var _a, _b, _c;
623
- const localVarAxiosArgs = yield localVarAxiosParamCreator.twoListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
651
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.twoListExport(billMonths, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
624
652
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
625
653
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EnergyCostAnalysisControllerApi.twoListExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
626
654
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
627
655
  });
628
656
  },
657
+ /**
658
+ * 二级面板
659
+ * @summary 二级面板-获取下拉选项的园区
660
+ * @param {*} [options] Override http request option.
661
+ * @throws {RequiredError}
662
+ */
663
+ twoListPark(options) {
664
+ return __awaiter(this, void 0, void 0, function* () {
665
+ var _a, _b, _c;
666
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.twoListPark(options);
667
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
668
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EnergyCostAnalysisControllerApi.twoListPark']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
669
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
670
+ });
671
+ },
629
672
  /**
630
673
  * 二级面板
631
674
  * @summary 二级面板-单平单价分析
@@ -718,7 +761,7 @@ const EnergyCostAnalysisControllerApiFactory = function (configuration, basePath
718
761
  * @throws {RequiredError}
719
762
  */
720
763
  getAnalysisListExport(requestParameters, options) {
721
- return localVarFp.getAnalysisListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(axios, basePath));
764
+ return localVarFp.getAnalysisListExport(requestParameters.billMonths, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(axios, basePath));
722
765
  },
723
766
  /**
724
767
  * 获取当年各场景的用量趋势图数据
@@ -768,7 +811,16 @@ const EnergyCostAnalysisControllerApiFactory = function (configuration, basePath
768
811
  * @throws {RequiredError}
769
812
  */
770
813
  twoListExport(requestParameters, options) {
771
- return localVarFp.twoListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(axios, basePath));
814
+ return localVarFp.twoListExport(requestParameters.billMonths, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(axios, basePath));
815
+ },
816
+ /**
817
+ * 二级面板
818
+ * @summary 二级面板-获取下拉选项的园区
819
+ * @param {*} [options] Override http request option.
820
+ * @throws {RequiredError}
821
+ */
822
+ twoListPark(options) {
823
+ return localVarFp.twoListPark(options).then((request) => request(axios, basePath));
772
824
  },
773
825
  /**
774
826
  * 二级面板
@@ -840,7 +892,7 @@ class EnergyCostAnalysisControllerApi extends base_1.BaseAPI {
840
892
  * @memberof EnergyCostAnalysisControllerApi
841
893
  */
842
894
  getAnalysisListExport(requestParameters, options) {
843
- return (0, exports.EnergyCostAnalysisControllerApiFp)(this.configuration).getAnalysisListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(this.axios, this.basePath));
895
+ return (0, exports.EnergyCostAnalysisControllerApiFp)(this.configuration).getAnalysisListExport(requestParameters.billMonths, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(this.axios, this.basePath));
844
896
  }
845
897
  /**
846
898
  * 获取当年各场景的用量趋势图数据
@@ -895,7 +947,17 @@ class EnergyCostAnalysisControllerApi extends base_1.BaseAPI {
895
947
  * @memberof EnergyCostAnalysisControllerApi
896
948
  */
897
949
  twoListExport(requestParameters, options) {
898
- return (0, exports.EnergyCostAnalysisControllerApiFp)(this.configuration).twoListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(this.axios, this.basePath));
950
+ return (0, exports.EnergyCostAnalysisControllerApiFp)(this.configuration).twoListExport(requestParameters.billMonths, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.scenarios, requestParameters.startTime, requestParameters.endTime, requestParameters.srmAreaCodes, requestParameters.srmXwCodes, requestParameters.srmCenterCodes, requestParameters.plannedStartTime, requestParameters.plannedEndTime, options).then((request) => request(this.axios, this.basePath));
951
+ }
952
+ /**
953
+ * 二级面板
954
+ * @summary 二级面板-获取下拉选项的园区
955
+ * @param {*} [options] Override http request option.
956
+ * @throws {RequiredError}
957
+ * @memberof EnergyCostAnalysisControllerApi
958
+ */
959
+ twoListPark(options) {
960
+ return (0, exports.EnergyCostAnalysisControllerApiFp)(this.configuration).twoListPark(options).then((request) => request(this.axios, this.basePath));
899
961
  }
900
962
  /**
901
963
  * 二级面板