@gizone/rrs-client 4.2.9-alpha.612 → 4.2.9-alpha.613
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apis/energy-cost-analysis-controller-api.ts +20 -20
- package/dist/apis/energy-cost-analysis-controller-api.d.ts +10 -10
- package/dist/apis/energy-cost-analysis-controller-api.js +18 -18
- package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +10 -10
- package/dist/esm/apis/energy-cost-analysis-controller-api.js +18 -18
- package/dist/esm/models/energy-cost-analysis-query-dto.d.ts +8 -1
- package/dist/esm/models/energy-cost-analysis-query-dto.js +6 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
- package/dist/models/energy-cost-analysis-query-dto.d.ts +8 -1
- package/dist/models/energy-cost-analysis-query-dto.js +7 -1
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
- package/models/energy-cost-analysis-query-dto.ts +9 -1
- package/models/ipage-energy-cost-record-info-vo.ts +7 -7
- package/ossutil.log +1143 -1140
- package/package.json +1 -1
|
@@ -89,7 +89,7 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
|
|
|
89
89
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
90
90
|
* @param {string} energyTypes 能源类型列表
|
|
91
91
|
* @param {string} [parkIds] 园区ID列表
|
|
92
|
-
* @param {string} [
|
|
92
|
+
* @param {string} [scenarios] 场景来源
|
|
93
93
|
* @param {string} [startTime] 开始时间
|
|
94
94
|
* @param {string} [endTime] 结束时间
|
|
95
95
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -100,7 +100,7 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
|
|
|
100
100
|
* @param {*} [options] Override http request option.
|
|
101
101
|
* @throws {RequiredError}
|
|
102
102
|
*/
|
|
103
|
-
getAnalysisListExport: async (billMonth: string, energyTypes: string, parkIds?: string,
|
|
103
|
+
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> => {
|
|
104
104
|
// verify required parameter 'billMonth' is not null or undefined
|
|
105
105
|
assertParamExists('getAnalysisListExport', 'billMonth', billMonth)
|
|
106
106
|
// verify required parameter 'energyTypes' is not null or undefined
|
|
@@ -133,8 +133,8 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
|
|
|
133
133
|
localVarQueryParameter['parkIds'] = parkIds;
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
-
if (
|
|
137
|
-
localVarQueryParameter['
|
|
136
|
+
if (scenarios !== undefined) {
|
|
137
|
+
localVarQueryParameter['scenarios'] = scenarios;
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
if (startTime !== undefined) {
|
|
@@ -382,7 +382,7 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
|
|
|
382
382
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
383
383
|
* @param {string} energyTypes 能源类型列表
|
|
384
384
|
* @param {string} [parkIds] 园区ID列表
|
|
385
|
-
* @param {string} [
|
|
385
|
+
* @param {string} [scenarios] 场景来源
|
|
386
386
|
* @param {string} [startTime] 开始时间
|
|
387
387
|
* @param {string} [endTime] 结束时间
|
|
388
388
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -393,7 +393,7 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
|
|
|
393
393
|
* @param {*} [options] Override http request option.
|
|
394
394
|
* @throws {RequiredError}
|
|
395
395
|
*/
|
|
396
|
-
twoListExport: async (billMonth: string, energyTypes: string, parkIds?: string,
|
|
396
|
+
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> => {
|
|
397
397
|
// verify required parameter 'billMonth' is not null or undefined
|
|
398
398
|
assertParamExists('twoListExport', 'billMonth', billMonth)
|
|
399
399
|
// verify required parameter 'energyTypes' is not null or undefined
|
|
@@ -426,8 +426,8 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
|
|
|
426
426
|
localVarQueryParameter['parkIds'] = parkIds;
|
|
427
427
|
}
|
|
428
428
|
|
|
429
|
-
if (
|
|
430
|
-
localVarQueryParameter['
|
|
429
|
+
if (scenarios !== undefined) {
|
|
430
|
+
localVarQueryParameter['scenarios'] = scenarios;
|
|
431
431
|
}
|
|
432
432
|
|
|
433
433
|
if (startTime !== undefined) {
|
|
@@ -658,7 +658,7 @@ export const EnergyCostAnalysisControllerApiFp = function(configuration?: Config
|
|
|
658
658
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
659
659
|
* @param {string} energyTypes 能源类型列表
|
|
660
660
|
* @param {string} [parkIds] 园区ID列表
|
|
661
|
-
* @param {string} [
|
|
661
|
+
* @param {string} [scenarios] 场景来源
|
|
662
662
|
* @param {string} [startTime] 开始时间
|
|
663
663
|
* @param {string} [endTime] 结束时间
|
|
664
664
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -669,8 +669,8 @@ export const EnergyCostAnalysisControllerApiFp = function(configuration?: Config
|
|
|
669
669
|
* @param {*} [options] Override http request option.
|
|
670
670
|
* @throws {RequiredError}
|
|
671
671
|
*/
|
|
672
|
-
async getAnalysisListExport(billMonth: string, energyTypes: string, parkIds?: string,
|
|
673
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getAnalysisListExport(billMonth, energyTypes, parkIds,
|
|
672
|
+
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>> {
|
|
673
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAnalysisListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
|
|
674
674
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
675
675
|
const localVarOperationServerBasePath = operationServerMap['EnergyCostAnalysisControllerApi.getAnalysisListExport']?.[localVarOperationServerIndex]?.url;
|
|
676
676
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -746,7 +746,7 @@ export const EnergyCostAnalysisControllerApiFp = function(configuration?: Config
|
|
|
746
746
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
747
747
|
* @param {string} energyTypes 能源类型列表
|
|
748
748
|
* @param {string} [parkIds] 园区ID列表
|
|
749
|
-
* @param {string} [
|
|
749
|
+
* @param {string} [scenarios] 场景来源
|
|
750
750
|
* @param {string} [startTime] 开始时间
|
|
751
751
|
* @param {string} [endTime] 结束时间
|
|
752
752
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -757,8 +757,8 @@ export const EnergyCostAnalysisControllerApiFp = function(configuration?: Config
|
|
|
757
757
|
* @param {*} [options] Override http request option.
|
|
758
758
|
* @throws {RequiredError}
|
|
759
759
|
*/
|
|
760
|
-
async twoListExport(billMonth: string, energyTypes: string, parkIds?: string,
|
|
761
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.twoListExport(billMonth, energyTypes, parkIds,
|
|
760
|
+
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>> {
|
|
761
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.twoListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
|
|
762
762
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
763
763
|
const localVarOperationServerBasePath = operationServerMap['EnergyCostAnalysisControllerApi.twoListExport']?.[localVarOperationServerIndex]?.url;
|
|
764
764
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -843,7 +843,7 @@ export const EnergyCostAnalysisControllerApiFactory = function (configuration?:
|
|
|
843
843
|
* @throws {RequiredError}
|
|
844
844
|
*/
|
|
845
845
|
getAnalysisListExport(requestParameters: EnergyCostAnalysisControllerApiGetAnalysisListExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
846
|
-
return localVarFp.getAnalysisListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.
|
|
846
|
+
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));
|
|
847
847
|
},
|
|
848
848
|
/**
|
|
849
849
|
* 获取当年各场景的用量趋势图数据
|
|
@@ -903,7 +903,7 @@ export const EnergyCostAnalysisControllerApiFactory = function (configuration?:
|
|
|
903
903
|
* @throws {RequiredError}
|
|
904
904
|
*/
|
|
905
905
|
twoListExport(requestParameters: EnergyCostAnalysisControllerApiTwoListExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
906
|
-
return localVarFp.twoListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.
|
|
906
|
+
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));
|
|
907
907
|
},
|
|
908
908
|
/**
|
|
909
909
|
* 二级面板
|
|
@@ -994,7 +994,7 @@ export interface EnergyCostAnalysisControllerApiGetAnalysisListExportRequest {
|
|
|
994
994
|
* @type {string}
|
|
995
995
|
* @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
|
|
996
996
|
*/
|
|
997
|
-
readonly
|
|
997
|
+
readonly scenarios?: string
|
|
998
998
|
|
|
999
999
|
/**
|
|
1000
1000
|
* 开始时间
|
|
@@ -1148,7 +1148,7 @@ export interface EnergyCostAnalysisControllerApiTwoListExportRequest {
|
|
|
1148
1148
|
* @type {string}
|
|
1149
1149
|
* @memberof EnergyCostAnalysisControllerApiTwoListExport
|
|
1150
1150
|
*/
|
|
1151
|
-
readonly
|
|
1151
|
+
readonly scenarios?: string
|
|
1152
1152
|
|
|
1153
1153
|
/**
|
|
1154
1154
|
* 开始时间
|
|
@@ -1284,7 +1284,7 @@ export class EnergyCostAnalysisControllerApi extends BaseAPI {
|
|
|
1284
1284
|
* @memberof EnergyCostAnalysisControllerApi
|
|
1285
1285
|
*/
|
|
1286
1286
|
public getAnalysisListExport(requestParameters: EnergyCostAnalysisControllerApiGetAnalysisListExportRequest, options?: RawAxiosRequestConfig) {
|
|
1287
|
-
return EnergyCostAnalysisControllerApiFp(this.configuration).getAnalysisListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.
|
|
1287
|
+
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));
|
|
1288
1288
|
}
|
|
1289
1289
|
|
|
1290
1290
|
/**
|
|
@@ -1356,7 +1356,7 @@ export class EnergyCostAnalysisControllerApi extends BaseAPI {
|
|
|
1356
1356
|
* @memberof EnergyCostAnalysisControllerApi
|
|
1357
1357
|
*/
|
|
1358
1358
|
public twoListExport(requestParameters: EnergyCostAnalysisControllerApiTwoListExportRequest, options?: RawAxiosRequestConfig) {
|
|
1359
|
-
return EnergyCostAnalysisControllerApiFp(this.configuration).twoListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.
|
|
1359
|
+
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));
|
|
1360
1360
|
}
|
|
1361
1361
|
|
|
1362
1362
|
/**
|
|
@@ -39,7 +39,7 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
|
|
|
39
39
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
40
40
|
* @param {string} energyTypes 能源类型列表
|
|
41
41
|
* @param {string} [parkIds] 园区ID列表
|
|
42
|
-
* @param {string} [
|
|
42
|
+
* @param {string} [scenarios] 场景来源
|
|
43
43
|
* @param {string} [startTime] 开始时间
|
|
44
44
|
* @param {string} [endTime] 结束时间
|
|
45
45
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -50,7 +50,7 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
|
|
|
50
50
|
* @param {*} [options] Override http request option.
|
|
51
51
|
* @throws {RequiredError}
|
|
52
52
|
*/
|
|
53
|
-
getAnalysisListExport: (billMonth: string, energyTypes: string, parkIds?: string,
|
|
53
|
+
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>;
|
|
54
54
|
/**
|
|
55
55
|
* 获取当年各场景的用量趋势图数据
|
|
56
56
|
* @summary 用量趋势分析
|
|
@@ -97,7 +97,7 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
|
|
|
97
97
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
98
98
|
* @param {string} energyTypes 能源类型列表
|
|
99
99
|
* @param {string} [parkIds] 园区ID列表
|
|
100
|
-
* @param {string} [
|
|
100
|
+
* @param {string} [scenarios] 场景来源
|
|
101
101
|
* @param {string} [startTime] 开始时间
|
|
102
102
|
* @param {string} [endTime] 结束时间
|
|
103
103
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -108,7 +108,7 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
|
|
|
108
108
|
* @param {*} [options] Override http request option.
|
|
109
109
|
* @throws {RequiredError}
|
|
110
110
|
*/
|
|
111
|
-
twoListExport: (billMonth: string, energyTypes: string, parkIds?: string,
|
|
111
|
+
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>;
|
|
112
112
|
/**
|
|
113
113
|
* 二级面板
|
|
114
114
|
* @summary 二级面板-单平单价分析
|
|
@@ -161,7 +161,7 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
|
|
|
161
161
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
162
162
|
* @param {string} energyTypes 能源类型列表
|
|
163
163
|
* @param {string} [parkIds] 园区ID列表
|
|
164
|
-
* @param {string} [
|
|
164
|
+
* @param {string} [scenarios] 场景来源
|
|
165
165
|
* @param {string} [startTime] 开始时间
|
|
166
166
|
* @param {string} [endTime] 结束时间
|
|
167
167
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -172,7 +172,7 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
|
|
|
172
172
|
* @param {*} [options] Override http request option.
|
|
173
173
|
* @throws {RequiredError}
|
|
174
174
|
*/
|
|
175
|
-
getAnalysisListExport(billMonth: string, energyTypes: string, parkIds?: string,
|
|
175
|
+
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>>;
|
|
176
176
|
/**
|
|
177
177
|
* 获取当年各场景的用量趋势图数据
|
|
178
178
|
* @summary 用量趋势分析
|
|
@@ -219,7 +219,7 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
|
|
|
219
219
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
220
220
|
* @param {string} energyTypes 能源类型列表
|
|
221
221
|
* @param {string} [parkIds] 园区ID列表
|
|
222
|
-
* @param {string} [
|
|
222
|
+
* @param {string} [scenarios] 场景来源
|
|
223
223
|
* @param {string} [startTime] 开始时间
|
|
224
224
|
* @param {string} [endTime] 结束时间
|
|
225
225
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -230,7 +230,7 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
|
|
|
230
230
|
* @param {*} [options] Override http request option.
|
|
231
231
|
* @throws {RequiredError}
|
|
232
232
|
*/
|
|
233
|
-
twoListExport(billMonth: string, energyTypes: string, parkIds?: string,
|
|
233
|
+
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>>;
|
|
234
234
|
/**
|
|
235
235
|
* 二级面板
|
|
236
236
|
* @summary 二级面板-单平单价分析
|
|
@@ -408,7 +408,7 @@ export interface EnergyCostAnalysisControllerApiGetAnalysisListExportRequest {
|
|
|
408
408
|
* @type {string}
|
|
409
409
|
* @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
|
|
410
410
|
*/
|
|
411
|
-
readonly
|
|
411
|
+
readonly scenarios?: string;
|
|
412
412
|
/**
|
|
413
413
|
* 开始时间
|
|
414
414
|
* @type {string}
|
|
@@ -546,7 +546,7 @@ export interface EnergyCostAnalysisControllerApiTwoListExportRequest {
|
|
|
546
546
|
* @type {string}
|
|
547
547
|
* @memberof EnergyCostAnalysisControllerApiTwoListExport
|
|
548
548
|
*/
|
|
549
|
-
readonly
|
|
549
|
+
readonly scenarios?: string;
|
|
550
550
|
/**
|
|
551
551
|
* 开始时间
|
|
552
552
|
* @type {string}
|
|
@@ -74,7 +74,7 @@ const EnergyCostAnalysisControllerApiAxiosParamCreator = function (configuration
|
|
|
74
74
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
75
75
|
* @param {string} energyTypes 能源类型列表
|
|
76
76
|
* @param {string} [parkIds] 园区ID列表
|
|
77
|
-
* @param {string} [
|
|
77
|
+
* @param {string} [scenarios] 场景来源
|
|
78
78
|
* @param {string} [startTime] 开始时间
|
|
79
79
|
* @param {string} [endTime] 结束时间
|
|
80
80
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -85,7 +85,7 @@ 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,
|
|
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
89
|
// verify required parameter 'billMonth' is not null or undefined
|
|
90
90
|
(0, common_1.assertParamExists)('getAnalysisListExport', 'billMonth', billMonth);
|
|
91
91
|
// verify required parameter 'energyTypes' is not null or undefined
|
|
@@ -112,8 +112,8 @@ const EnergyCostAnalysisControllerApiAxiosParamCreator = function (configuration
|
|
|
112
112
|
if (parkIds !== undefined) {
|
|
113
113
|
localVarQueryParameter['parkIds'] = parkIds;
|
|
114
114
|
}
|
|
115
|
-
if (
|
|
116
|
-
localVarQueryParameter['
|
|
115
|
+
if (scenarios !== undefined) {
|
|
116
|
+
localVarQueryParameter['scenarios'] = scenarios;
|
|
117
117
|
}
|
|
118
118
|
if (startTime !== undefined) {
|
|
119
119
|
localVarQueryParameter['startTime'] = startTime;
|
|
@@ -315,7 +315,7 @@ const EnergyCostAnalysisControllerApiAxiosParamCreator = function (configuration
|
|
|
315
315
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
316
316
|
* @param {string} energyTypes 能源类型列表
|
|
317
317
|
* @param {string} [parkIds] 园区ID列表
|
|
318
|
-
* @param {string} [
|
|
318
|
+
* @param {string} [scenarios] 场景来源
|
|
319
319
|
* @param {string} [startTime] 开始时间
|
|
320
320
|
* @param {string} [endTime] 结束时间
|
|
321
321
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -326,7 +326,7 @@ const EnergyCostAnalysisControllerApiAxiosParamCreator = function (configuration
|
|
|
326
326
|
* @param {*} [options] Override http request option.
|
|
327
327
|
* @throws {RequiredError}
|
|
328
328
|
*/
|
|
329
|
-
twoListExport: (billMonth_1, energyTypes_1, parkIds_1,
|
|
329
|
+
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 = {}) {
|
|
330
330
|
// verify required parameter 'billMonth' is not null or undefined
|
|
331
331
|
(0, common_1.assertParamExists)('twoListExport', 'billMonth', billMonth);
|
|
332
332
|
// verify required parameter 'energyTypes' is not null or undefined
|
|
@@ -353,8 +353,8 @@ const EnergyCostAnalysisControllerApiAxiosParamCreator = function (configuration
|
|
|
353
353
|
if (parkIds !== undefined) {
|
|
354
354
|
localVarQueryParameter['parkIds'] = parkIds;
|
|
355
355
|
}
|
|
356
|
-
if (
|
|
357
|
-
localVarQueryParameter['
|
|
356
|
+
if (scenarios !== undefined) {
|
|
357
|
+
localVarQueryParameter['scenarios'] = scenarios;
|
|
358
358
|
}
|
|
359
359
|
if (startTime !== undefined) {
|
|
360
360
|
localVarQueryParameter['startTime'] = startTime;
|
|
@@ -549,7 +549,7 @@ const EnergyCostAnalysisControllerApiFp = function (configuration) {
|
|
|
549
549
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
550
550
|
* @param {string} energyTypes 能源类型列表
|
|
551
551
|
* @param {string} [parkIds] 园区ID列表
|
|
552
|
-
* @param {string} [
|
|
552
|
+
* @param {string} [scenarios] 场景来源
|
|
553
553
|
* @param {string} [startTime] 开始时间
|
|
554
554
|
* @param {string} [endTime] 结束时间
|
|
555
555
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -560,10 +560,10 @@ const EnergyCostAnalysisControllerApiFp = function (configuration) {
|
|
|
560
560
|
* @param {*} [options] Override http request option.
|
|
561
561
|
* @throws {RequiredError}
|
|
562
562
|
*/
|
|
563
|
-
getAnalysisListExport(billMonth, energyTypes, parkIds,
|
|
563
|
+
getAnalysisListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options) {
|
|
564
564
|
return __awaiter(this, void 0, void 0, function* () {
|
|
565
565
|
var _a, _b, _c;
|
|
566
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getAnalysisListExport(billMonth, energyTypes, parkIds,
|
|
566
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getAnalysisListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
|
|
567
567
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
568
568
|
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;
|
|
569
569
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -655,7 +655,7 @@ const EnergyCostAnalysisControllerApiFp = function (configuration) {
|
|
|
655
655
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
656
656
|
* @param {string} energyTypes 能源类型列表
|
|
657
657
|
* @param {string} [parkIds] 园区ID列表
|
|
658
|
-
* @param {string} [
|
|
658
|
+
* @param {string} [scenarios] 场景来源
|
|
659
659
|
* @param {string} [startTime] 开始时间
|
|
660
660
|
* @param {string} [endTime] 结束时间
|
|
661
661
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -666,10 +666,10 @@ const EnergyCostAnalysisControllerApiFp = function (configuration) {
|
|
|
666
666
|
* @param {*} [options] Override http request option.
|
|
667
667
|
* @throws {RequiredError}
|
|
668
668
|
*/
|
|
669
|
-
twoListExport(billMonth, energyTypes, parkIds,
|
|
669
|
+
twoListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options) {
|
|
670
670
|
return __awaiter(this, void 0, void 0, function* () {
|
|
671
671
|
var _a, _b, _c;
|
|
672
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.twoListExport(billMonth, energyTypes, parkIds,
|
|
672
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.twoListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
|
|
673
673
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
674
674
|
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;
|
|
675
675
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -767,7 +767,7 @@ const EnergyCostAnalysisControllerApiFactory = function (configuration, basePath
|
|
|
767
767
|
* @throws {RequiredError}
|
|
768
768
|
*/
|
|
769
769
|
getAnalysisListExport(requestParameters, options) {
|
|
770
|
-
return localVarFp.getAnalysisListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.
|
|
770
|
+
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));
|
|
771
771
|
},
|
|
772
772
|
/**
|
|
773
773
|
* 获取当年各场景的用量趋势图数据
|
|
@@ -827,7 +827,7 @@ const EnergyCostAnalysisControllerApiFactory = function (configuration, basePath
|
|
|
827
827
|
* @throws {RequiredError}
|
|
828
828
|
*/
|
|
829
829
|
twoListExport(requestParameters, options) {
|
|
830
|
-
return localVarFp.twoListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.
|
|
830
|
+
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));
|
|
831
831
|
},
|
|
832
832
|
/**
|
|
833
833
|
* 二级面板
|
|
@@ -899,7 +899,7 @@ class EnergyCostAnalysisControllerApi extends base_1.BaseAPI {
|
|
|
899
899
|
* @memberof EnergyCostAnalysisControllerApi
|
|
900
900
|
*/
|
|
901
901
|
getAnalysisListExport(requestParameters, options) {
|
|
902
|
-
return (0, exports.EnergyCostAnalysisControllerApiFp)(this.configuration).getAnalysisListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.
|
|
902
|
+
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));
|
|
903
903
|
}
|
|
904
904
|
/**
|
|
905
905
|
* 获取当年各场景的用量趋势图数据
|
|
@@ -965,7 +965,7 @@ class EnergyCostAnalysisControllerApi extends base_1.BaseAPI {
|
|
|
965
965
|
* @memberof EnergyCostAnalysisControllerApi
|
|
966
966
|
*/
|
|
967
967
|
twoListExport(requestParameters, options) {
|
|
968
|
-
return (0, exports.EnergyCostAnalysisControllerApiFp)(this.configuration).twoListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.
|
|
968
|
+
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));
|
|
969
969
|
}
|
|
970
970
|
/**
|
|
971
971
|
* 二级面板
|
|
@@ -39,7 +39,7 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
|
|
|
39
39
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
40
40
|
* @param {string} energyTypes 能源类型列表
|
|
41
41
|
* @param {string} [parkIds] 园区ID列表
|
|
42
|
-
* @param {string} [
|
|
42
|
+
* @param {string} [scenarios] 场景来源
|
|
43
43
|
* @param {string} [startTime] 开始时间
|
|
44
44
|
* @param {string} [endTime] 结束时间
|
|
45
45
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -50,7 +50,7 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
|
|
|
50
50
|
* @param {*} [options] Override http request option.
|
|
51
51
|
* @throws {RequiredError}
|
|
52
52
|
*/
|
|
53
|
-
getAnalysisListExport: (billMonth: string, energyTypes: string, parkIds?: string,
|
|
53
|
+
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>;
|
|
54
54
|
/**
|
|
55
55
|
* 获取当年各场景的用量趋势图数据
|
|
56
56
|
* @summary 用量趋势分析
|
|
@@ -97,7 +97,7 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
|
|
|
97
97
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
98
98
|
* @param {string} energyTypes 能源类型列表
|
|
99
99
|
* @param {string} [parkIds] 园区ID列表
|
|
100
|
-
* @param {string} [
|
|
100
|
+
* @param {string} [scenarios] 场景来源
|
|
101
101
|
* @param {string} [startTime] 开始时间
|
|
102
102
|
* @param {string} [endTime] 结束时间
|
|
103
103
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -108,7 +108,7 @@ export declare const EnergyCostAnalysisControllerApiAxiosParamCreator: (configur
|
|
|
108
108
|
* @param {*} [options] Override http request option.
|
|
109
109
|
* @throws {RequiredError}
|
|
110
110
|
*/
|
|
111
|
-
twoListExport: (billMonth: string, energyTypes: string, parkIds?: string,
|
|
111
|
+
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>;
|
|
112
112
|
/**
|
|
113
113
|
* 二级面板
|
|
114
114
|
* @summary 二级面板-单平单价分析
|
|
@@ -161,7 +161,7 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
|
|
|
161
161
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
162
162
|
* @param {string} energyTypes 能源类型列表
|
|
163
163
|
* @param {string} [parkIds] 园区ID列表
|
|
164
|
-
* @param {string} [
|
|
164
|
+
* @param {string} [scenarios] 场景来源
|
|
165
165
|
* @param {string} [startTime] 开始时间
|
|
166
166
|
* @param {string} [endTime] 结束时间
|
|
167
167
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -172,7 +172,7 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
|
|
|
172
172
|
* @param {*} [options] Override http request option.
|
|
173
173
|
* @throws {RequiredError}
|
|
174
174
|
*/
|
|
175
|
-
getAnalysisListExport(billMonth: string, energyTypes: string, parkIds?: string,
|
|
175
|
+
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>>;
|
|
176
176
|
/**
|
|
177
177
|
* 获取当年各场景的用量趋势图数据
|
|
178
178
|
* @summary 用量趋势分析
|
|
@@ -219,7 +219,7 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
|
|
|
219
219
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
220
220
|
* @param {string} energyTypes 能源类型列表
|
|
221
221
|
* @param {string} [parkIds] 园区ID列表
|
|
222
|
-
* @param {string} [
|
|
222
|
+
* @param {string} [scenarios] 场景来源
|
|
223
223
|
* @param {string} [startTime] 开始时间
|
|
224
224
|
* @param {string} [endTime] 结束时间
|
|
225
225
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -230,7 +230,7 @@ export declare const EnergyCostAnalysisControllerApiFp: (configuration?: Configu
|
|
|
230
230
|
* @param {*} [options] Override http request option.
|
|
231
231
|
* @throws {RequiredError}
|
|
232
232
|
*/
|
|
233
|
-
twoListExport(billMonth: string, energyTypes: string, parkIds?: string,
|
|
233
|
+
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>>;
|
|
234
234
|
/**
|
|
235
235
|
* 二级面板
|
|
236
236
|
* @summary 二级面板-单平单价分析
|
|
@@ -408,7 +408,7 @@ export interface EnergyCostAnalysisControllerApiGetAnalysisListExportRequest {
|
|
|
408
408
|
* @type {string}
|
|
409
409
|
* @memberof EnergyCostAnalysisControllerApiGetAnalysisListExport
|
|
410
410
|
*/
|
|
411
|
-
readonly
|
|
411
|
+
readonly scenarios?: string;
|
|
412
412
|
/**
|
|
413
413
|
* 开始时间
|
|
414
414
|
* @type {string}
|
|
@@ -546,7 +546,7 @@ export interface EnergyCostAnalysisControllerApiTwoListExportRequest {
|
|
|
546
546
|
* @type {string}
|
|
547
547
|
* @memberof EnergyCostAnalysisControllerApiTwoListExport
|
|
548
548
|
*/
|
|
549
|
-
readonly
|
|
549
|
+
readonly scenarios?: string;
|
|
550
550
|
/**
|
|
551
551
|
* 开始时间
|
|
552
552
|
* @type {string}
|
|
@@ -71,7 +71,7 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
|
|
|
71
71
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
72
72
|
* @param {string} energyTypes 能源类型列表
|
|
73
73
|
* @param {string} [parkIds] 园区ID列表
|
|
74
|
-
* @param {string} [
|
|
74
|
+
* @param {string} [scenarios] 场景来源
|
|
75
75
|
* @param {string} [startTime] 开始时间
|
|
76
76
|
* @param {string} [endTime] 结束时间
|
|
77
77
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -82,7 +82,7 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
|
|
|
82
82
|
* @param {*} [options] Override http request option.
|
|
83
83
|
* @throws {RequiredError}
|
|
84
84
|
*/
|
|
85
|
-
getAnalysisListExport: (billMonth_1, energyTypes_1, parkIds_1,
|
|
85
|
+
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 = {}) {
|
|
86
86
|
// verify required parameter 'billMonth' is not null or undefined
|
|
87
87
|
assertParamExists('getAnalysisListExport', 'billMonth', billMonth);
|
|
88
88
|
// verify required parameter 'energyTypes' is not null or undefined
|
|
@@ -109,8 +109,8 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
|
|
|
109
109
|
if (parkIds !== undefined) {
|
|
110
110
|
localVarQueryParameter['parkIds'] = parkIds;
|
|
111
111
|
}
|
|
112
|
-
if (
|
|
113
|
-
localVarQueryParameter['
|
|
112
|
+
if (scenarios !== undefined) {
|
|
113
|
+
localVarQueryParameter['scenarios'] = scenarios;
|
|
114
114
|
}
|
|
115
115
|
if (startTime !== undefined) {
|
|
116
116
|
localVarQueryParameter['startTime'] = startTime;
|
|
@@ -312,7 +312,7 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
|
|
|
312
312
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
313
313
|
* @param {string} energyTypes 能源类型列表
|
|
314
314
|
* @param {string} [parkIds] 园区ID列表
|
|
315
|
-
* @param {string} [
|
|
315
|
+
* @param {string} [scenarios] 场景来源
|
|
316
316
|
* @param {string} [startTime] 开始时间
|
|
317
317
|
* @param {string} [endTime] 结束时间
|
|
318
318
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -323,7 +323,7 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
|
|
|
323
323
|
* @param {*} [options] Override http request option.
|
|
324
324
|
* @throws {RequiredError}
|
|
325
325
|
*/
|
|
326
|
-
twoListExport: (billMonth_1, energyTypes_1, parkIds_1,
|
|
326
|
+
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 = {}) {
|
|
327
327
|
// verify required parameter 'billMonth' is not null or undefined
|
|
328
328
|
assertParamExists('twoListExport', 'billMonth', billMonth);
|
|
329
329
|
// verify required parameter 'energyTypes' is not null or undefined
|
|
@@ -350,8 +350,8 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
|
|
|
350
350
|
if (parkIds !== undefined) {
|
|
351
351
|
localVarQueryParameter['parkIds'] = parkIds;
|
|
352
352
|
}
|
|
353
|
-
if (
|
|
354
|
-
localVarQueryParameter['
|
|
353
|
+
if (scenarios !== undefined) {
|
|
354
|
+
localVarQueryParameter['scenarios'] = scenarios;
|
|
355
355
|
}
|
|
356
356
|
if (startTime !== undefined) {
|
|
357
357
|
localVarQueryParameter['startTime'] = startTime;
|
|
@@ -545,7 +545,7 @@ export const EnergyCostAnalysisControllerApiFp = function (configuration) {
|
|
|
545
545
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
546
546
|
* @param {string} energyTypes 能源类型列表
|
|
547
547
|
* @param {string} [parkIds] 园区ID列表
|
|
548
|
-
* @param {string} [
|
|
548
|
+
* @param {string} [scenarios] 场景来源
|
|
549
549
|
* @param {string} [startTime] 开始时间
|
|
550
550
|
* @param {string} [endTime] 结束时间
|
|
551
551
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -556,10 +556,10 @@ export const EnergyCostAnalysisControllerApiFp = function (configuration) {
|
|
|
556
556
|
* @param {*} [options] Override http request option.
|
|
557
557
|
* @throws {RequiredError}
|
|
558
558
|
*/
|
|
559
|
-
getAnalysisListExport(billMonth, energyTypes, parkIds,
|
|
559
|
+
getAnalysisListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options) {
|
|
560
560
|
return __awaiter(this, void 0, void 0, function* () {
|
|
561
561
|
var _a, _b, _c;
|
|
562
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getAnalysisListExport(billMonth, energyTypes, parkIds,
|
|
562
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getAnalysisListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
|
|
563
563
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
564
564
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnergyCostAnalysisControllerApi.getAnalysisListExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
565
565
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -651,7 +651,7 @@ export const EnergyCostAnalysisControllerApiFp = function (configuration) {
|
|
|
651
651
|
* @param {string} billMonth 账单月,格式:yyyy-MM
|
|
652
652
|
* @param {string} energyTypes 能源类型列表
|
|
653
653
|
* @param {string} [parkIds] 园区ID列表
|
|
654
|
-
* @param {string} [
|
|
654
|
+
* @param {string} [scenarios] 场景来源
|
|
655
655
|
* @param {string} [startTime] 开始时间
|
|
656
656
|
* @param {string} [endTime] 结束时间
|
|
657
657
|
* @param {string} [srmAreaCodes] SRM区域编码
|
|
@@ -662,10 +662,10 @@ export const EnergyCostAnalysisControllerApiFp = function (configuration) {
|
|
|
662
662
|
* @param {*} [options] Override http request option.
|
|
663
663
|
* @throws {RequiredError}
|
|
664
664
|
*/
|
|
665
|
-
twoListExport(billMonth, energyTypes, parkIds,
|
|
665
|
+
twoListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options) {
|
|
666
666
|
return __awaiter(this, void 0, void 0, function* () {
|
|
667
667
|
var _a, _b, _c;
|
|
668
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.twoListExport(billMonth, energyTypes, parkIds,
|
|
668
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.twoListExport(billMonth, energyTypes, parkIds, scenarios, startTime, endTime, srmAreaCodes, srmXwCodes, srmCenterCodes, plannedStartTime, plannedEndTime, options);
|
|
669
669
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
670
670
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnergyCostAnalysisControllerApi.twoListExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
671
671
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -762,7 +762,7 @@ export const EnergyCostAnalysisControllerApiFactory = function (configuration, b
|
|
|
762
762
|
* @throws {RequiredError}
|
|
763
763
|
*/
|
|
764
764
|
getAnalysisListExport(requestParameters, options) {
|
|
765
|
-
return localVarFp.getAnalysisListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.
|
|
765
|
+
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));
|
|
766
766
|
},
|
|
767
767
|
/**
|
|
768
768
|
* 获取当年各场景的用量趋势图数据
|
|
@@ -822,7 +822,7 @@ export const EnergyCostAnalysisControllerApiFactory = function (configuration, b
|
|
|
822
822
|
* @throws {RequiredError}
|
|
823
823
|
*/
|
|
824
824
|
twoListExport(requestParameters, options) {
|
|
825
|
-
return localVarFp.twoListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.
|
|
825
|
+
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));
|
|
826
826
|
},
|
|
827
827
|
/**
|
|
828
828
|
* 二级面板
|
|
@@ -893,7 +893,7 @@ export class EnergyCostAnalysisControllerApi extends BaseAPI {
|
|
|
893
893
|
* @memberof EnergyCostAnalysisControllerApi
|
|
894
894
|
*/
|
|
895
895
|
getAnalysisListExport(requestParameters, options) {
|
|
896
|
-
return EnergyCostAnalysisControllerApiFp(this.configuration).getAnalysisListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.
|
|
896
|
+
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));
|
|
897
897
|
}
|
|
898
898
|
/**
|
|
899
899
|
* 获取当年各场景的用量趋势图数据
|
|
@@ -959,7 +959,7 @@ export class EnergyCostAnalysisControllerApi extends BaseAPI {
|
|
|
959
959
|
* @memberof EnergyCostAnalysisControllerApi
|
|
960
960
|
*/
|
|
961
961
|
twoListExport(requestParameters, options) {
|
|
962
|
-
return EnergyCostAnalysisControllerApiFp(this.configuration).twoListExport(requestParameters.billMonth, requestParameters.energyTypes, requestParameters.parkIds, requestParameters.
|
|
962
|
+
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));
|
|
963
963
|
}
|
|
964
964
|
/**
|
|
965
965
|
* 二级面板
|