@gizone/rrs-client 4.2.9-alpha.590 → 4.2.9-alpha.594

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 (26) hide show
  1. package/apis/energy-cost-analysis-controller-api.ts +444 -0
  2. package/apis/energy-cost-controller-api.ts +19 -14
  3. package/apis/energy-cost-record-controller-api.ts +174 -0
  4. package/dist/apis/energy-cost-analysis-controller-api.d.ts +252 -0
  5. package/dist/apis/energy-cost-analysis-controller-api.js +246 -0
  6. package/dist/apis/energy-cost-controller-api.d.ts +6 -7
  7. package/dist/apis/energy-cost-controller-api.js +15 -9
  8. package/dist/apis/energy-cost-record-controller-api.d.ts +102 -0
  9. package/dist/apis/energy-cost-record-controller-api.js +107 -1
  10. package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +252 -0
  11. package/dist/esm/apis/energy-cost-analysis-controller-api.js +246 -0
  12. package/dist/esm/apis/energy-cost-controller-api.d.ts +6 -7
  13. package/dist/esm/apis/energy-cost-controller-api.js +15 -9
  14. package/dist/esm/apis/energy-cost-record-controller-api.d.ts +102 -0
  15. package/dist/esm/apis/energy-cost-record-controller-api.js +106 -0
  16. package/dist/esm/models/energy-cost-add-record-dto.d.ts +3 -3
  17. package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
  18. package/dist/esm/models/sys-user.d.ts +4 -4
  19. package/dist/models/energy-cost-add-record-dto.d.ts +3 -3
  20. package/dist/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
  21. package/dist/models/sys-user.d.ts +4 -4
  22. package/models/energy-cost-add-record-dto.ts +3 -3
  23. package/models/ipage-energy-cost-record-info-vo.ts +4 -4
  24. package/models/sys-user.ts +4 -4
  25. package/ossutil.log +1122 -1116
  26. package/package.json +1 -1
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
22
22
  });
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.EnergyCostAddRecordListEnergyTypesEnum = exports.EnergyCostRecordControllerApi = exports.EnergyCostRecordControllerApiFactory = exports.EnergyCostRecordControllerApiFp = exports.EnergyCostRecordControllerApiAxiosParamCreator = void 0;
25
+ exports.EnergyCostAddRecordListExportEnergyTypesEnum = exports.EnergyCostAddRecordListEnergyTypesEnum = exports.EnergyCostRecordControllerApi = exports.EnergyCostRecordControllerApiFactory = exports.EnergyCostRecordControllerApiFp = exports.EnergyCostRecordControllerApiAxiosParamCreator = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -198,6 +198,62 @@ const EnergyCostRecordControllerApiAxiosParamCreator = function (configuration)
198
198
  options: localVarRequestOptions,
199
199
  };
200
200
  }),
201
+ /**
202
+ *
203
+ * @summary 新增能源消耗-列表导出
204
+ * @param {number} [page]
205
+ * @param {number} [size]
206
+ * @param {string} [billCode]
207
+ * @param {string} [startTime]
208
+ * @param {string} [endTime]
209
+ * @param {Array<EnergyCostAddRecordListExportEnergyTypesEnum>} [energyTypes]
210
+ * @param {Array<number>} [status]
211
+ * @param {*} [options] Override http request option.
212
+ * @throws {RequiredError}
213
+ */
214
+ energyCostAddRecordListExport: (page_1, size_1, billCode_1, startTime_1, endTime_1, energyTypes_1, status_1, ...args_1) => __awaiter(this, [page_1, size_1, billCode_1, startTime_1, endTime_1, energyTypes_1, status_1, ...args_1], void 0, function* (page, size, billCode, startTime, endTime, energyTypes, status, options = {}) {
215
+ const localVarPath = `/gizone/energy/cost/record/list/export`;
216
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
217
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
218
+ let baseOptions;
219
+ if (configuration) {
220
+ baseOptions = configuration.baseOptions;
221
+ }
222
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
223
+ const localVarHeaderParameter = {};
224
+ const localVarQueryParameter = {};
225
+ // authentication tokenScheme required
226
+ // http bearer authentication required
227
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
228
+ if (page !== undefined) {
229
+ localVarQueryParameter['page'] = page;
230
+ }
231
+ if (size !== undefined) {
232
+ localVarQueryParameter['size'] = size;
233
+ }
234
+ if (billCode !== undefined) {
235
+ localVarQueryParameter['billCode'] = billCode;
236
+ }
237
+ if (startTime !== undefined) {
238
+ localVarQueryParameter['startTime'] = startTime;
239
+ }
240
+ if (endTime !== undefined) {
241
+ localVarQueryParameter['endTime'] = endTime;
242
+ }
243
+ if (energyTypes) {
244
+ localVarQueryParameter['energyTypes'] = energyTypes;
245
+ }
246
+ if (status) {
247
+ localVarQueryParameter['status'] = status;
248
+ }
249
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
250
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
251
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
252
+ return {
253
+ url: (0, common_1.toPathString)(localVarUrlObj),
254
+ options: localVarRequestOptions,
255
+ };
256
+ }),
201
257
  /**
202
258
  * 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
203
259
  * @summary 计算能源消耗(不保存)
@@ -411,6 +467,28 @@ const EnergyCostRecordControllerApiFp = function (configuration) {
411
467
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
412
468
  });
413
469
  },
470
+ /**
471
+ *
472
+ * @summary 新增能源消耗-列表导出
473
+ * @param {number} [page]
474
+ * @param {number} [size]
475
+ * @param {string} [billCode]
476
+ * @param {string} [startTime]
477
+ * @param {string} [endTime]
478
+ * @param {Array<EnergyCostAddRecordListExportEnergyTypesEnum>} [energyTypes]
479
+ * @param {Array<number>} [status]
480
+ * @param {*} [options] Override http request option.
481
+ * @throws {RequiredError}
482
+ */
483
+ energyCostAddRecordListExport(page, size, billCode, startTime, endTime, energyTypes, status, options) {
484
+ return __awaiter(this, void 0, void 0, function* () {
485
+ var _a, _b, _c;
486
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.energyCostAddRecordListExport(page, size, billCode, startTime, endTime, energyTypes, status, options);
487
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
488
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EnergyCostRecordControllerApi.energyCostAddRecordListExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
489
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
490
+ });
491
+ },
414
492
  /**
415
493
  * 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
416
494
  * @summary 计算能源消耗(不保存)
@@ -525,6 +603,16 @@ const EnergyCostRecordControllerApiFactory = function (configuration, basePath,
525
603
  energyCostAddRecordList(requestParameters = {}, options) {
526
604
  return localVarFp.energyCostAddRecordList(requestParameters.page, requestParameters.size, requestParameters.billCode, requestParameters.startTime, requestParameters.endTime, requestParameters.energyTypes, requestParameters.status, options).then((request) => request(axios, basePath));
527
605
  },
606
+ /**
607
+ *
608
+ * @summary 新增能源消耗-列表导出
609
+ * @param {EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest} requestParameters Request parameters.
610
+ * @param {*} [options] Override http request option.
611
+ * @throws {RequiredError}
612
+ */
613
+ energyCostAddRecordListExport(requestParameters = {}, options) {
614
+ return localVarFp.energyCostAddRecordListExport(requestParameters.page, requestParameters.size, requestParameters.billCode, requestParameters.startTime, requestParameters.endTime, requestParameters.energyTypes, requestParameters.status, options).then((request) => request(axios, basePath));
615
+ },
528
616
  /**
529
617
  * 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
530
618
  * @summary 计算能源消耗(不保存)
@@ -619,6 +707,17 @@ class EnergyCostRecordControllerApi extends base_1.BaseAPI {
619
707
  energyCostAddRecordList(requestParameters = {}, options) {
620
708
  return (0, exports.EnergyCostRecordControllerApiFp)(this.configuration).energyCostAddRecordList(requestParameters.page, requestParameters.size, requestParameters.billCode, requestParameters.startTime, requestParameters.endTime, requestParameters.energyTypes, requestParameters.status, options).then((request) => request(this.axios, this.basePath));
621
709
  }
710
+ /**
711
+ *
712
+ * @summary 新增能源消耗-列表导出
713
+ * @param {EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest} requestParameters Request parameters.
714
+ * @param {*} [options] Override http request option.
715
+ * @throws {RequiredError}
716
+ * @memberof EnergyCostRecordControllerApi
717
+ */
718
+ energyCostAddRecordListExport(requestParameters = {}, options) {
719
+ return (0, exports.EnergyCostRecordControllerApiFp)(this.configuration).energyCostAddRecordListExport(requestParameters.page, requestParameters.size, requestParameters.billCode, requestParameters.startTime, requestParameters.endTime, requestParameters.energyTypes, requestParameters.status, options).then((request) => request(this.axios, this.basePath));
720
+ }
622
721
  /**
623
722
  * 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
624
723
  * @summary 计算能源消耗(不保存)
@@ -672,3 +771,10 @@ exports.EnergyCostAddRecordListEnergyTypesEnum = {
672
771
  Electric: 'ELECTRIC',
673
772
  Water: 'WATER'
674
773
  };
774
+ /**
775
+ * @export
776
+ */
777
+ exports.EnergyCostAddRecordListExportEnergyTypesEnum = {
778
+ Electric: 'ELECTRIC',
779
+ Water: 'WATER'
780
+ };
@@ -33,6 +33,24 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
33
33
  * @throws {RequiredError}
34
34
  */
35
35
  getAnalysisList: (energyCostAnalysisQueryDTO: EnergyCostAnalysisQueryDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
36
+ /**
37
+ * 获取账单分析列表数据
38
+ * @summary 分析列表数据-导出
39
+ * @param {string} billMonth 账单月,格式:yyyy-MM
40
+ * @param {string} energyTypes 能源类型列表
41
+ * @param {string} [parkIds] 园区ID列表
42
+ * @param {string} [billSource] 场景来源
43
+ * @param {string} [startTime] 开始时间
44
+ * @param {string} [endTime] 结束时间
45
+ * @param {string} [srmAreaCodes] SRM区域编码
46
+ * @param {string} [srmXwCodes] SRM小微编码
47
+ * @param {string} [srmCenterCodes] SRM中心编码
48
+ * @param {string} [plannedStartTime] 应执行开始时间
49
+ * @param {string} [plannedEndTime] 应执行结束时间
50
+ * @param {*} [options] Override http request option.
51
+ * @throws {RequiredError}
52
+ */
53
+ getAnalysisListExport: (billMonth: string, energyTypes: string, parkIds?: string, billSource?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
36
54
  /**
37
55
  * 获取当年各场景的用量趋势图数据
38
56
  * @summary 用量趋势分析
@@ -73,6 +91,24 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
73
91
  * @throws {RequiredError}
74
92
  */
75
93
  twoList: (energyCostAnalysisQueryDTO: EnergyCostAnalysisQueryDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
94
+ /**
95
+ * 二级面板
96
+ * @summary 二级面板-列表导出
97
+ * @param {string} billMonth 账单月,格式:yyyy-MM
98
+ * @param {string} energyTypes 能源类型列表
99
+ * @param {string} [parkIds] 园区ID列表
100
+ * @param {string} [billSource] 场景来源
101
+ * @param {string} [startTime] 开始时间
102
+ * @param {string} [endTime] 结束时间
103
+ * @param {string} [srmAreaCodes] SRM区域编码
104
+ * @param {string} [srmXwCodes] SRM小微编码
105
+ * @param {string} [srmCenterCodes] SRM中心编码
106
+ * @param {string} [plannedStartTime] 应执行开始时间
107
+ * @param {string} [plannedEndTime] 应执行结束时间
108
+ * @param {*} [options] Override http request option.
109
+ * @throws {RequiredError}
110
+ */
111
+ twoListExport: (billMonth: string, energyTypes: string, parkIds?: string, billSource?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
76
112
  /**
77
113
  * 二级面板
78
114
  * @summary 二级面板-单平单价分析
@@ -119,6 +155,24 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
119
155
  * @throws {RequiredError}
120
156
  */
121
157
  getAnalysisList(energyCostAnalysisQueryDTO: EnergyCostAnalysisQueryDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListEnergyCostAnalysisListVO>>;
158
+ /**
159
+ * 获取账单分析列表数据
160
+ * @summary 分析列表数据-导出
161
+ * @param {string} billMonth 账单月,格式:yyyy-MM
162
+ * @param {string} energyTypes 能源类型列表
163
+ * @param {string} [parkIds] 园区ID列表
164
+ * @param {string} [billSource] 场景来源
165
+ * @param {string} [startTime] 开始时间
166
+ * @param {string} [endTime] 结束时间
167
+ * @param {string} [srmAreaCodes] SRM区域编码
168
+ * @param {string} [srmXwCodes] SRM小微编码
169
+ * @param {string} [srmCenterCodes] SRM中心编码
170
+ * @param {string} [plannedStartTime] 应执行开始时间
171
+ * @param {string} [plannedEndTime] 应执行结束时间
172
+ * @param {*} [options] Override http request option.
173
+ * @throws {RequiredError}
174
+ */
175
+ getAnalysisListExport(billMonth: string, energyTypes: string, parkIds?: string, billSource?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
122
176
  /**
123
177
  * 获取当年各场景的用量趋势图数据
124
178
  * @summary 用量趋势分析
@@ -159,6 +213,24 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
159
213
  * @throws {RequiredError}
160
214
  */
161
215
  twoList(energyCostAnalysisQueryDTO: EnergyCostAnalysisQueryDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListEnergyCostTwoListVO>>;
216
+ /**
217
+ * 二级面板
218
+ * @summary 二级面板-列表导出
219
+ * @param {string} billMonth 账单月,格式:yyyy-MM
220
+ * @param {string} energyTypes 能源类型列表
221
+ * @param {string} [parkIds] 园区ID列表
222
+ * @param {string} [billSource] 场景来源
223
+ * @param {string} [startTime] 开始时间
224
+ * @param {string} [endTime] 结束时间
225
+ * @param {string} [srmAreaCodes] SRM区域编码
226
+ * @param {string} [srmXwCodes] SRM小微编码
227
+ * @param {string} [srmCenterCodes] SRM中心编码
228
+ * @param {string} [plannedStartTime] 应执行开始时间
229
+ * @param {string} [plannedEndTime] 应执行结束时间
230
+ * @param {*} [options] Override http request option.
231
+ * @throws {RequiredError}
232
+ */
233
+ twoListExport(billMonth: string, energyTypes: string, parkIds?: string, billSource?: string, startTime?: string, endTime?: string, srmAreaCodes?: string, srmXwCodes?: string, srmCenterCodes?: string, plannedStartTime?: string, plannedEndTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
162
234
  /**
163
235
  * 二级面板
164
236
  * @summary 二级面板-单平单价分析
@@ -205,6 +277,14 @@ export declare const EnergyCostAnalysisControllerApiFactory: (configuration?: Co
205
277
  * @throws {RequiredError}
206
278
  */
207
279
  getAnalysisList(requestParameters: EnergyCostAnalysisControllerApiGetAnalysisListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListEnergyCostAnalysisListVO>;
280
+ /**
281
+ * 获取账单分析列表数据
282
+ * @summary 分析列表数据-导出
283
+ * @param {EnergyCostAnalysisControllerApiGetAnalysisListExportRequest} requestParameters Request parameters.
284
+ * @param {*} [options] Override http request option.
285
+ * @throws {RequiredError}
286
+ */
287
+ getAnalysisListExport(requestParameters: EnergyCostAnalysisControllerApiGetAnalysisListExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
208
288
  /**
209
289
  * 获取当年各场景的用量趋势图数据
210
290
  * @summary 用量趋势分析
@@ -245,6 +325,14 @@ export declare const EnergyCostAnalysisControllerApiFactory: (configuration?: Co
245
325
  * @throws {RequiredError}
246
326
  */
247
327
  twoList(requestParameters: EnergyCostAnalysisControllerApiTwoListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListEnergyCostTwoListVO>;
328
+ /**
329
+ * 二级面板
330
+ * @summary 二级面板-列表导出
331
+ * @param {EnergyCostAnalysisControllerApiTwoListExportRequest} requestParameters Request parameters.
332
+ * @param {*} [options] Override http request option.
333
+ * @throws {RequiredError}
334
+ */
335
+ twoListExport(requestParameters: EnergyCostAnalysisControllerApiTwoListExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
248
336
  /**
249
337
  * 二级面板
250
338
  * @summary 二级面板-单平单价分析
@@ -291,6 +379,79 @@ export interface EnergyCostAnalysisControllerApiGetAnalysisListRequest {
291
379
  */
292
380
  readonly energyCostAnalysisQueryDTO: EnergyCostAnalysisQueryDTO;
293
381
  }
382
+ /**
383
+ * Request parameters for getAnalysisListExport operation in EnergyCostAnalysisControllerApi.
384
+ * @export
385
+ * @interface EnergyCostAnalysisControllerApiGetAnalysisListExportRequest
386
+ */
387
+ export interface EnergyCostAnalysisControllerApiGetAnalysisListExportRequest {
388
+ /**
389
+ * 账单月,格式:yyyy-MM
390
+ * @type {string}
391
+ * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
392
+ */
393
+ readonly billMonth: string;
394
+ /**
395
+ * 能源类型列表
396
+ * @type {string}
397
+ * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
398
+ */
399
+ readonly energyTypes: string;
400
+ /**
401
+ * 园区ID列表
402
+ * @type {string}
403
+ * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
404
+ */
405
+ readonly parkIds?: string;
406
+ /**
407
+ * 场景来源
408
+ * @type {string}
409
+ * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
410
+ */
411
+ readonly billSource?: string;
412
+ /**
413
+ * 开始时间
414
+ * @type {string}
415
+ * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
416
+ */
417
+ readonly startTime?: string;
418
+ /**
419
+ * 结束时间
420
+ * @type {string}
421
+ * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
422
+ */
423
+ readonly endTime?: string;
424
+ /**
425
+ * SRM区域编码
426
+ * @type {string}
427
+ * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
428
+ */
429
+ readonly srmAreaCodes?: string;
430
+ /**
431
+ * SRM小微编码
432
+ * @type {string}
433
+ * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
434
+ */
435
+ readonly srmXwCodes?: string;
436
+ /**
437
+ * SRM中心编码
438
+ * @type {string}
439
+ * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
440
+ */
441
+ readonly srmCenterCodes?: string;
442
+ /**
443
+ * 应执行开始时间
444
+ * @type {string}
445
+ * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
446
+ */
447
+ readonly plannedStartTime?: string;
448
+ /**
449
+ * 应执行结束时间
450
+ * @type {string}
451
+ * @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
452
+ */
453
+ readonly plannedEndTime?: string;
454
+ }
294
455
  /**
295
456
  * Request parameters for getUsageTrend operation in EnergyCostAnalysisControllerApi.
296
457
  * @export
@@ -356,6 +517,79 @@ export interface EnergyCostAnalysisControllerApiTwoListRequest {
356
517
  */
357
518
  readonly energyCostAnalysisQueryDTO: EnergyCostAnalysisQueryDTO;
358
519
  }
520
+ /**
521
+ * Request parameters for twoListExport operation in EnergyCostAnalysisControllerApi.
522
+ * @export
523
+ * @interface EnergyCostAnalysisControllerApiTwoListExportRequest
524
+ */
525
+ export interface EnergyCostAnalysisControllerApiTwoListExportRequest {
526
+ /**
527
+ * 账单月,格式:yyyy-MM
528
+ * @type {string}
529
+ * @memberof EnergyCostAnalysisControllerApiTwoListExport
530
+ */
531
+ readonly billMonth: string;
532
+ /**
533
+ * 能源类型列表
534
+ * @type {string}
535
+ * @memberof EnergyCostAnalysisControllerApiTwoListExport
536
+ */
537
+ readonly energyTypes: string;
538
+ /**
539
+ * 园区ID列表
540
+ * @type {string}
541
+ * @memberof EnergyCostAnalysisControllerApiTwoListExport
542
+ */
543
+ readonly parkIds?: string;
544
+ /**
545
+ * 场景来源
546
+ * @type {string}
547
+ * @memberof EnergyCostAnalysisControllerApiTwoListExport
548
+ */
549
+ readonly billSource?: string;
550
+ /**
551
+ * 开始时间
552
+ * @type {string}
553
+ * @memberof EnergyCostAnalysisControllerApiTwoListExport
554
+ */
555
+ readonly startTime?: string;
556
+ /**
557
+ * 结束时间
558
+ * @type {string}
559
+ * @memberof EnergyCostAnalysisControllerApiTwoListExport
560
+ */
561
+ readonly endTime?: string;
562
+ /**
563
+ * SRM区域编码
564
+ * @type {string}
565
+ * @memberof EnergyCostAnalysisControllerApiTwoListExport
566
+ */
567
+ readonly srmAreaCodes?: string;
568
+ /**
569
+ * SRM小微编码
570
+ * @type {string}
571
+ * @memberof EnergyCostAnalysisControllerApiTwoListExport
572
+ */
573
+ readonly srmXwCodes?: string;
574
+ /**
575
+ * SRM中心编码
576
+ * @type {string}
577
+ * @memberof EnergyCostAnalysisControllerApiTwoListExport
578
+ */
579
+ readonly srmCenterCodes?: string;
580
+ /**
581
+ * 应执行开始时间
582
+ * @type {string}
583
+ * @memberof EnergyCostAnalysisControllerApiTwoListExport
584
+ */
585
+ readonly plannedStartTime?: string;
586
+ /**
587
+ * 应执行结束时间
588
+ * @type {string}
589
+ * @memberof EnergyCostAnalysisControllerApiTwoListExport
590
+ */
591
+ readonly plannedEndTime?: string;
592
+ }
359
593
  /**
360
594
  * Request parameters for twoPerAreaAnalysis operation in EnergyCostAnalysisControllerApi.
361
595
  * @export
@@ -424,6 +658,15 @@ export declare class EnergyCostAnalysisControllerApi extends BaseAPI {
424
658
  * @memberof EnergyCostAnalysisControllerApi
425
659
  */
426
660
  getAnalysisList(requestParameters: EnergyCostAnalysisControllerApiGetAnalysisListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListEnergyCostAnalysisListVO, any, {}>>;
661
+ /**
662
+ * 获取账单分析列表数据
663
+ * @summary 分析列表数据-导出
664
+ * @param {EnergyCostAnalysisControllerApiGetAnalysisListExportRequest} requestParameters Request parameters.
665
+ * @param {*} [options] Override http request option.
666
+ * @throws {RequiredError}
667
+ * @memberof EnergyCostAnalysisControllerApi
668
+ */
669
+ getAnalysisListExport(requestParameters: EnergyCostAnalysisControllerApiGetAnalysisListExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
427
670
  /**
428
671
  * 获取当年各场景的用量趋势图数据
429
672
  * @summary 用量趋势分析
@@ -469,6 +712,15 @@ export declare class EnergyCostAnalysisControllerApi extends BaseAPI {
469
712
  * @memberof EnergyCostAnalysisControllerApi
470
713
  */
471
714
  twoList(requestParameters: EnergyCostAnalysisControllerApiTwoListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListEnergyCostTwoListVO, any, {}>>;
715
+ /**
716
+ * 二级面板
717
+ * @summary 二级面板-列表导出
718
+ * @param {EnergyCostAnalysisControllerApiTwoListExportRequest} requestParameters Request parameters.
719
+ * @param {*} [options] Override http request option.
720
+ * @throws {RequiredError}
721
+ * @memberof EnergyCostAnalysisControllerApi
722
+ */
723
+ twoListExport(requestParameters: EnergyCostAnalysisControllerApiTwoListExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
472
724
  /**
473
725
  * 二级面板
474
726
  * @summary 二级面板-单平单价分析