@gizone/rrs-client 4.2.9-alpha.678 → 4.2.9-alpha.680

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.
@@ -86,25 +86,13 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
86
86
  /**
87
87
  * 获取账单分析列表数据
88
88
  * @summary 分析列表数据-导出
89
- * @param {string} billMonths 账单月,格式:yyyy-MM
90
- * @param {string} energyTypes 能源类型列表
91
- * @param {string} [parkIds] 园区ID列表
92
- * @param {string} [scenarios] 场景来源
93
- * @param {string} [startTime] 开始时间
94
- * @param {string} [endTime] 结束时间
95
- * @param {string} [srmAreaCodes] SRM区域编码
96
- * @param {string} [srmXwCodes] SRM小微编码
97
- * @param {string} [srmCenterCodes] SRM中心编码
98
- * @param {string} [plannedStartTime] 应执行开始时间
99
- * @param {string} [plannedEndTime] 应执行结束时间
89
+ * @param {EnergyCostAnalysisQueryDTO} energyCostAnalysisQueryDTO
100
90
  * @param {*} [options] Override http request option.
101
91
  * @throws {RequiredError}
102
92
  */
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)
106
- // verify required parameter 'energyTypes' is not null or undefined
107
- assertParamExists('getAnalysisListExport', 'energyTypes', energyTypes)
93
+ getAnalysisListExport: async (energyCostAnalysisQueryDTO: EnergyCostAnalysisQueryDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
94
+ // verify required parameter 'energyCostAnalysisQueryDTO' is not null or undefined
95
+ assertParamExists('getAnalysisListExport', 'energyCostAnalysisQueryDTO', energyCostAnalysisQueryDTO)
108
96
  const localVarPath = `/gizone/energy/cost/analysis/list/export`;
109
97
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
110
98
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -113,7 +101,7 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
113
101
  baseOptions = configuration.baseOptions;
114
102
  }
115
103
 
116
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
104
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
117
105
  const localVarHeaderParameter = {} as any;
118
106
  const localVarQueryParameter = {} as any;
119
107
 
@@ -121,55 +109,14 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
121
109
  // http bearer authentication required
122
110
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
123
111
 
124
- if (billMonths !== undefined) {
125
- localVarQueryParameter['billMonths'] = billMonths;
126
- }
127
-
128
- if (energyTypes !== undefined) {
129
- localVarQueryParameter['energyTypes'] = energyTypes;
130
- }
131
-
132
- if (parkIds !== undefined) {
133
- localVarQueryParameter['parkIds'] = parkIds;
134
- }
135
-
136
- if (scenarios !== undefined) {
137
- localVarQueryParameter['scenarios'] = scenarios;
138
- }
139
-
140
- if (startTime !== undefined) {
141
- localVarQueryParameter['startTime'] = startTime;
142
- }
143
-
144
- if (endTime !== undefined) {
145
- localVarQueryParameter['endTime'] = endTime;
146
- }
147
-
148
- if (srmAreaCodes !== undefined) {
149
- localVarQueryParameter['srmAreaCodes'] = srmAreaCodes;
150
- }
151
-
152
- if (srmXwCodes !== undefined) {
153
- localVarQueryParameter['srmXwCodes'] = srmXwCodes;
154
- }
155
-
156
- if (srmCenterCodes !== undefined) {
157
- localVarQueryParameter['srmCenterCodes'] = srmCenterCodes;
158
- }
159
-
160
- if (plannedStartTime !== undefined) {
161
- localVarQueryParameter['plannedStartTime'] = plannedStartTime;
162
- }
163
-
164
- if (plannedEndTime !== undefined) {
165
- localVarQueryParameter['plannedEndTime'] = plannedEndTime;
166
- }
167
-
168
112
 
169
113
 
114
+ localVarHeaderParameter['Content-Type'] = 'application/json';
115
+
170
116
  setSearchParams(localVarUrlObj, localVarQueryParameter);
171
117
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
172
118
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
119
+ localVarRequestOptions.data = serializeDataIfNeeded(energyCostAnalysisQueryDTO, localVarRequestOptions, configuration)
173
120
 
174
121
  return {
175
122
  url: toPathString(localVarUrlObj),
@@ -339,25 +286,13 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
339
286
  /**
340
287
  * 二级面板
341
288
  * @summary 二级面板-列表导出
342
- * @param {string} billMonths 账单月,格式:yyyy-MM
343
- * @param {string} energyTypes 能源类型列表
344
- * @param {string} [parkIds] 园区ID列表
345
- * @param {string} [scenarios] 场景来源
346
- * @param {string} [startTime] 开始时间
347
- * @param {string} [endTime] 结束时间
348
- * @param {string} [srmAreaCodes] SRM区域编码
349
- * @param {string} [srmXwCodes] SRM小微编码
350
- * @param {string} [srmCenterCodes] SRM中心编码
351
- * @param {string} [plannedStartTime] 应执行开始时间
352
- * @param {string} [plannedEndTime] 应执行结束时间
289
+ * @param {EnergyCostAnalysisQueryDTO} energyCostAnalysisQueryDTO
353
290
  * @param {*} [options] Override http request option.
354
291
  * @throws {RequiredError}
355
292
  */
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)
359
- // verify required parameter 'energyTypes' is not null or undefined
360
- assertParamExists('twoListExport', 'energyTypes', energyTypes)
293
+ twoListExport: async (energyCostAnalysisQueryDTO: EnergyCostAnalysisQueryDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
294
+ // verify required parameter 'energyCostAnalysisQueryDTO' is not null or undefined
295
+ assertParamExists('twoListExport', 'energyCostAnalysisQueryDTO', energyCostAnalysisQueryDTO)
361
296
  const localVarPath = `/gizone/energy/cost/analysis/two-list/export`;
362
297
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
363
298
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -374,55 +309,14 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
374
309
  // http bearer authentication required
375
310
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
376
311
 
377
- if (billMonths !== undefined) {
378
- localVarQueryParameter['billMonths'] = billMonths;
379
- }
380
-
381
- if (energyTypes !== undefined) {
382
- localVarQueryParameter['energyTypes'] = energyTypes;
383
- }
384
-
385
- if (parkIds !== undefined) {
386
- localVarQueryParameter['parkIds'] = parkIds;
387
- }
388
-
389
- if (scenarios !== undefined) {
390
- localVarQueryParameter['scenarios'] = scenarios;
391
- }
392
-
393
- if (startTime !== undefined) {
394
- localVarQueryParameter['startTime'] = startTime;
395
- }
396
-
397
- if (endTime !== undefined) {
398
- localVarQueryParameter['endTime'] = endTime;
399
- }
400
-
401
- if (srmAreaCodes !== undefined) {
402
- localVarQueryParameter['srmAreaCodes'] = srmAreaCodes;
403
- }
404
-
405
- if (srmXwCodes !== undefined) {
406
- localVarQueryParameter['srmXwCodes'] = srmXwCodes;
407
- }
408
-
409
- if (srmCenterCodes !== undefined) {
410
- localVarQueryParameter['srmCenterCodes'] = srmCenterCodes;
411
- }
412
-
413
- if (plannedStartTime !== undefined) {
414
- localVarQueryParameter['plannedStartTime'] = plannedStartTime;
415
- }
416
-
417
- if (plannedEndTime !== undefined) {
418
- localVarQueryParameter['plannedEndTime'] = plannedEndTime;
419
- }
420
-
421
312
 
422
313
 
314
+ localVarHeaderParameter['Content-Type'] = 'application/json';
315
+
423
316
  setSearchParams(localVarUrlObj, localVarQueryParameter);
424
317
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
425
318
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
319
+ localVarRequestOptions.data = serializeDataIfNeeded(energyCostAnalysisQueryDTO, localVarRequestOptions, configuration)
426
320
 
427
321
  return {
428
322
  url: toPathString(localVarUrlObj),
@@ -649,22 +543,12 @@ export const EnergyCostAnalysisControllerApiFp = function(configuration?: Config
649
543
  /**
650
544
  * 获取账单分析列表数据
651
545
  * @summary 分析列表数据-导出
652
- * @param {string} billMonths 账单月,格式:yyyy-MM
653
- * @param {string} energyTypes 能源类型列表
654
- * @param {string} [parkIds] 园区ID列表
655
- * @param {string} [scenarios] 场景来源
656
- * @param {string} [startTime] 开始时间
657
- * @param {string} [endTime] 结束时间
658
- * @param {string} [srmAreaCodes] SRM区域编码
659
- * @param {string} [srmXwCodes] SRM小微编码
660
- * @param {string} [srmCenterCodes] SRM中心编码
661
- * @param {string} [plannedStartTime] 应执行开始时间
662
- * @param {string} [plannedEndTime] 应执行结束时间
546
+ * @param {EnergyCostAnalysisQueryDTO} energyCostAnalysisQueryDTO
663
547
  * @param {*} [options] Override http request option.
664
548
  * @throws {RequiredError}
665
549
  */
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);
550
+ async getAnalysisListExport(energyCostAnalysisQueryDTO: EnergyCostAnalysisQueryDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
551
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getAnalysisListExport(energyCostAnalysisQueryDTO, options);
668
552
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
669
553
  const localVarOperationServerBasePath = operationServerMap['EnergyCostAnalysisControllerApi.getAnalysisListExport']?.[localVarOperationServerIndex]?.url;
670
554
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -724,22 +608,12 @@ export const EnergyCostAnalysisControllerApiFp = function(configuration?: Config
724
608
  /**
725
609
  * 二级面板
726
610
  * @summary 二级面板-列表导出
727
- * @param {string} billMonths 账单月,格式:yyyy-MM
728
- * @param {string} energyTypes 能源类型列表
729
- * @param {string} [parkIds] 园区ID列表
730
- * @param {string} [scenarios] 场景来源
731
- * @param {string} [startTime] 开始时间
732
- * @param {string} [endTime] 结束时间
733
- * @param {string} [srmAreaCodes] SRM区域编码
734
- * @param {string} [srmXwCodes] SRM小微编码
735
- * @param {string} [srmCenterCodes] SRM中心编码
736
- * @param {string} [plannedStartTime] 应执行开始时间
737
- * @param {string} [plannedEndTime] 应执行结束时间
611
+ * @param {EnergyCostAnalysisQueryDTO} energyCostAnalysisQueryDTO
738
612
  * @param {*} [options] Override http request option.
739
613
  * @throws {RequiredError}
740
614
  */
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);
615
+ async twoListExport(energyCostAnalysisQueryDTO: EnergyCostAnalysisQueryDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
616
+ const localVarAxiosArgs = await localVarAxiosParamCreator.twoListExport(energyCostAnalysisQueryDTO, options);
743
617
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
744
618
  const localVarOperationServerBasePath = operationServerMap['EnergyCostAnalysisControllerApi.twoListExport']?.[localVarOperationServerIndex]?.url;
745
619
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -836,7 +710,7 @@ export const EnergyCostAnalysisControllerApiFactory = function (configuration?:
836
710
  * @throws {RequiredError}
837
711
  */
838
712
  getAnalysisListExport(requestParameters: EnergyCostAnalysisControllerApiGetAnalysisListExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
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));
713
+ return localVarFp.getAnalysisListExport(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(axios, basePath));
840
714
  },
841
715
  /**
842
716
  * 获取当年各场景的用量趋势图数据
@@ -886,7 +760,7 @@ export const EnergyCostAnalysisControllerApiFactory = function (configuration?:
886
760
  * @throws {RequiredError}
887
761
  */
888
762
  twoListExport(requestParameters: EnergyCostAnalysisControllerApiTwoListExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
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));
763
+ return localVarFp.twoListExport(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(axios, basePath));
890
764
  },
891
765
  /**
892
766
  * 二级面板
@@ -961,81 +835,11 @@ export interface EnergyCostAnalysisControllerApiGetAnalysisListRequest {
961
835
  */
962
836
  export interface EnergyCostAnalysisControllerApiGetAnalysisListExportRequest {
963
837
  /**
964
- * 账单月,格式:yyyy-MM
965
- * @type {string}
966
- * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
967
- */
968
- readonly billMonths: string
969
-
970
- /**
971
- * 能源类型列表
972
- * @type {string}
973
- * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
974
- */
975
- readonly energyTypes: string
976
-
977
- /**
978
- * 园区ID列表
979
- * @type {string}
980
- * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
981
- */
982
- readonly parkIds?: string
983
-
984
- /**
985
- * 场景来源
986
- * @type {string}
987
- * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
988
- */
989
- readonly scenarios?: string
990
-
991
- /**
992
- * 开始时间
993
- * @type {string}
994
- * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
995
- */
996
- readonly startTime?: string
997
-
998
- /**
999
- * 结束时间
1000
- * @type {string}
1001
- * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
1002
- */
1003
- readonly endTime?: string
1004
-
1005
- /**
1006
- * SRM区域编码
1007
- * @type {string}
1008
- * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
1009
- */
1010
- readonly srmAreaCodes?: string
1011
-
1012
- /**
1013
- * SRM小微编码
1014
- * @type {string}
1015
- * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
1016
- */
1017
- readonly srmXwCodes?: string
1018
-
1019
- /**
1020
- * SRM中心编码
1021
- * @type {string}
1022
- * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
1023
- */
1024
- readonly srmCenterCodes?: string
1025
-
1026
- /**
1027
- * 应执行开始时间
1028
- * @type {string}
1029
- * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
1030
- */
1031
- readonly plannedStartTime?: string
1032
-
1033
- /**
1034
- * 应执行结束时间
1035
- * @type {string}
838
+ *
839
+ * @type {EnergyCostAnalysisQueryDTO}
1036
840
  * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
1037
841
  */
1038
- readonly plannedEndTime?: string
842
+ readonly energyCostAnalysisQueryDTO: EnergyCostAnalysisQueryDTO
1039
843
  }
1040
844
 
1041
845
  /**
@@ -1101,81 +905,11 @@ export interface EnergyCostAnalysisControllerApiTwoListRequest {
1101
905
  */
1102
906
  export interface EnergyCostAnalysisControllerApiTwoListExportRequest {
1103
907
  /**
1104
- * 账单月,格式:yyyy-MM
1105
- * @type {string}
1106
- * @memberof EnergyCostAnalysisControllerApiTwoListExport
1107
- */
1108
- readonly billMonths: string
1109
-
1110
- /**
1111
- * 能源类型列表
1112
- * @type {string}
1113
- * @memberof EnergyCostAnalysisControllerApiTwoListExport
1114
- */
1115
- readonly energyTypes: string
1116
-
1117
- /**
1118
- * 园区ID列表
1119
- * @type {string}
1120
- * @memberof EnergyCostAnalysisControllerApiTwoListExport
1121
- */
1122
- readonly parkIds?: string
1123
-
1124
- /**
1125
- * 场景来源
1126
- * @type {string}
1127
- * @memberof EnergyCostAnalysisControllerApiTwoListExport
1128
- */
1129
- readonly scenarios?: string
1130
-
1131
- /**
1132
- * 开始时间
1133
- * @type {string}
1134
- * @memberof EnergyCostAnalysisControllerApiTwoListExport
1135
- */
1136
- readonly startTime?: string
1137
-
1138
- /**
1139
- * 结束时间
1140
- * @type {string}
1141
- * @memberof EnergyCostAnalysisControllerApiTwoListExport
1142
- */
1143
- readonly endTime?: string
1144
-
1145
- /**
1146
- * SRM区域编码
1147
- * @type {string}
1148
- * @memberof EnergyCostAnalysisControllerApiTwoListExport
1149
- */
1150
- readonly srmAreaCodes?: string
1151
-
1152
- /**
1153
- * SRM小微编码
1154
- * @type {string}
1155
- * @memberof EnergyCostAnalysisControllerApiTwoListExport
1156
- */
1157
- readonly srmXwCodes?: string
1158
-
1159
- /**
1160
- * SRM中心编码
1161
- * @type {string}
1162
- * @memberof EnergyCostAnalysisControllerApiTwoListExport
1163
- */
1164
- readonly srmCenterCodes?: string
1165
-
1166
- /**
1167
- * 应执行开始时间
1168
- * @type {string}
1169
- * @memberof EnergyCostAnalysisControllerApiTwoListExport
1170
- */
1171
- readonly plannedStartTime?: string
1172
-
1173
- /**
1174
- * 应执行结束时间
1175
- * @type {string}
908
+ *
909
+ * @type {EnergyCostAnalysisQueryDTO}
1176
910
  * @memberof EnergyCostAnalysisControllerApiTwoListExport
1177
911
  */
1178
- readonly plannedEndTime?: string
912
+ readonly energyCostAnalysisQueryDTO: EnergyCostAnalysisQueryDTO
1179
913
  }
1180
914
 
1181
915
  /**
@@ -1262,7 +996,7 @@ export class EnergyCostAnalysisControllerApi extends BaseAPI {
1262
996
  * @memberof EnergyCostAnalysisControllerApi
1263
997
  */
1264
998
  public getAnalysisListExport(requestParameters: EnergyCostAnalysisControllerApiGetAnalysisListExportRequest, options?: RawAxiosRequestConfig) {
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));
999
+ return EnergyCostAnalysisControllerApiFp(this.configuration).getAnalysisListExport(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(this.axios, this.basePath));
1266
1000
  }
1267
1001
 
1268
1002
  /**
@@ -1322,7 +1056,7 @@ export class EnergyCostAnalysisControllerApi extends BaseAPI {
1322
1056
  * @memberof EnergyCostAnalysisControllerApi
1323
1057
  */
1324
1058
  public twoListExport(requestParameters: EnergyCostAnalysisControllerApiTwoListExportRequest, options?: RawAxiosRequestConfig) {
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));
1059
+ return EnergyCostAnalysisControllerApiFp(this.configuration).twoListExport(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(this.axios, this.basePath));
1326
1060
  }
1327
1061
 
1328
1062
  /**