@gizone/rrs-client 4.2.9-alpha.590 → 4.2.9-alpha.591
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 +444 -0
- package/apis/energy-cost-record-controller-api.ts +174 -0
- package/dist/apis/energy-cost-analysis-controller-api.d.ts +252 -0
- package/dist/apis/energy-cost-analysis-controller-api.js +246 -0
- package/dist/apis/energy-cost-record-controller-api.d.ts +102 -0
- package/dist/apis/energy-cost-record-controller-api.js +107 -1
- package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +252 -0
- package/dist/esm/apis/energy-cost-analysis-controller-api.js +246 -0
- package/dist/esm/apis/energy-cost-record-controller-api.d.ts +102 -0
- package/dist/esm/apis/energy-cost-record-controller-api.js +106 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- package/models/ipage-energy-cost-record-info-vo.ts +4 -4
- package/ossutil.log +1119 -1116
- package/package.json +1 -1
|
@@ -231,6 +231,75 @@ export const EnergyCostRecordControllerApiAxiosParamCreator = function (configur
|
|
|
231
231
|
|
|
232
232
|
|
|
233
233
|
|
|
234
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
235
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
236
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
237
|
+
|
|
238
|
+
return {
|
|
239
|
+
url: toPathString(localVarUrlObj),
|
|
240
|
+
options: localVarRequestOptions,
|
|
241
|
+
};
|
|
242
|
+
},
|
|
243
|
+
/**
|
|
244
|
+
*
|
|
245
|
+
* @summary 新增能源消耗-列表导出
|
|
246
|
+
* @param {number} [page]
|
|
247
|
+
* @param {number} [size]
|
|
248
|
+
* @param {string} [billCode]
|
|
249
|
+
* @param {string} [startTime]
|
|
250
|
+
* @param {string} [endTime]
|
|
251
|
+
* @param {Array<EnergyCostAddRecordListExportEnergyTypesEnum>} [energyTypes]
|
|
252
|
+
* @param {Array<number>} [status]
|
|
253
|
+
* @param {*} [options] Override http request option.
|
|
254
|
+
* @throws {RequiredError}
|
|
255
|
+
*/
|
|
256
|
+
energyCostAddRecordListExport: async (page?: number, size?: number, billCode?: string, startTime?: string, endTime?: string, energyTypes?: Array<EnergyCostAddRecordListExportEnergyTypesEnum>, status?: Array<number>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
257
|
+
const localVarPath = `/gizone/energy/cost/record/list/export`;
|
|
258
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
259
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
260
|
+
let baseOptions;
|
|
261
|
+
if (configuration) {
|
|
262
|
+
baseOptions = configuration.baseOptions;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
266
|
+
const localVarHeaderParameter = {} as any;
|
|
267
|
+
const localVarQueryParameter = {} as any;
|
|
268
|
+
|
|
269
|
+
// authentication tokenScheme required
|
|
270
|
+
// http bearer authentication required
|
|
271
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
272
|
+
|
|
273
|
+
if (page !== undefined) {
|
|
274
|
+
localVarQueryParameter['page'] = page;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
if (size !== undefined) {
|
|
278
|
+
localVarQueryParameter['size'] = size;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
if (billCode !== undefined) {
|
|
282
|
+
localVarQueryParameter['billCode'] = billCode;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
if (startTime !== undefined) {
|
|
286
|
+
localVarQueryParameter['startTime'] = startTime;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
if (endTime !== undefined) {
|
|
290
|
+
localVarQueryParameter['endTime'] = endTime;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
if (energyTypes) {
|
|
294
|
+
localVarQueryParameter['energyTypes'] = energyTypes;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
if (status) {
|
|
298
|
+
localVarQueryParameter['status'] = status;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
234
303
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
235
304
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
236
305
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -469,6 +538,25 @@ export const EnergyCostRecordControllerApiFp = function(configuration?: Configur
|
|
|
469
538
|
const localVarOperationServerBasePath = operationServerMap['EnergyCostRecordControllerApi.energyCostAddRecordList']?.[localVarOperationServerIndex]?.url;
|
|
470
539
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
471
540
|
},
|
|
541
|
+
/**
|
|
542
|
+
*
|
|
543
|
+
* @summary 新增能源消耗-列表导出
|
|
544
|
+
* @param {number} [page]
|
|
545
|
+
* @param {number} [size]
|
|
546
|
+
* @param {string} [billCode]
|
|
547
|
+
* @param {string} [startTime]
|
|
548
|
+
* @param {string} [endTime]
|
|
549
|
+
* @param {Array<EnergyCostAddRecordListExportEnergyTypesEnum>} [energyTypes]
|
|
550
|
+
* @param {Array<number>} [status]
|
|
551
|
+
* @param {*} [options] Override http request option.
|
|
552
|
+
* @throws {RequiredError}
|
|
553
|
+
*/
|
|
554
|
+
async energyCostAddRecordListExport(page?: number, size?: number, billCode?: string, startTime?: string, endTime?: string, energyTypes?: Array<EnergyCostAddRecordListExportEnergyTypesEnum>, status?: Array<number>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
555
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.energyCostAddRecordListExport(page, size, billCode, startTime, endTime, energyTypes, status, options);
|
|
556
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
557
|
+
const localVarOperationServerBasePath = operationServerMap['EnergyCostRecordControllerApi.energyCostAddRecordListExport']?.[localVarOperationServerIndex]?.url;
|
|
558
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
559
|
+
},
|
|
472
560
|
/**
|
|
473
561
|
* 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
|
|
474
562
|
* @summary 计算能源消耗(不保存)
|
|
@@ -571,6 +659,16 @@ export const EnergyCostRecordControllerApiFactory = function (configuration?: Co
|
|
|
571
659
|
energyCostAddRecordList(requestParameters: EnergyCostRecordControllerApiEnergyCostAddRecordListRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultIPageEnergyCostRecordInfoVO> {
|
|
572
660
|
return localVarFp.energyCostAddRecordList(requestParameters.page, requestParameters.size, requestParameters.billCode, requestParameters.startTime, requestParameters.endTime, requestParameters.energyTypes, requestParameters.status, options).then((request) => request(axios, basePath));
|
|
573
661
|
},
|
|
662
|
+
/**
|
|
663
|
+
*
|
|
664
|
+
* @summary 新增能源消耗-列表导出
|
|
665
|
+
* @param {EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest} requestParameters Request parameters.
|
|
666
|
+
* @param {*} [options] Override http request option.
|
|
667
|
+
* @throws {RequiredError}
|
|
668
|
+
*/
|
|
669
|
+
energyCostAddRecordListExport(requestParameters: EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
670
|
+
return localVarFp.energyCostAddRecordListExport(requestParameters.page, requestParameters.size, requestParameters.billCode, requestParameters.startTime, requestParameters.endTime, requestParameters.energyTypes, requestParameters.status, options).then((request) => request(axios, basePath));
|
|
671
|
+
},
|
|
574
672
|
/**
|
|
575
673
|
* 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
|
|
576
674
|
* @summary 计算能源消耗(不保存)
|
|
@@ -726,6 +824,62 @@ export interface EnergyCostRecordControllerApiEnergyCostAddRecordListRequest {
|
|
|
726
824
|
readonly status?: Array<number>
|
|
727
825
|
}
|
|
728
826
|
|
|
827
|
+
/**
|
|
828
|
+
* Request parameters for energyCostAddRecordListExport operation in EnergyCostRecordControllerApi.
|
|
829
|
+
* @export
|
|
830
|
+
* @interface EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest
|
|
831
|
+
*/
|
|
832
|
+
export interface EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest {
|
|
833
|
+
/**
|
|
834
|
+
*
|
|
835
|
+
* @type {number}
|
|
836
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
837
|
+
*/
|
|
838
|
+
readonly page?: number
|
|
839
|
+
|
|
840
|
+
/**
|
|
841
|
+
*
|
|
842
|
+
* @type {number}
|
|
843
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
844
|
+
*/
|
|
845
|
+
readonly size?: number
|
|
846
|
+
|
|
847
|
+
/**
|
|
848
|
+
*
|
|
849
|
+
* @type {string}
|
|
850
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
851
|
+
*/
|
|
852
|
+
readonly billCode?: string
|
|
853
|
+
|
|
854
|
+
/**
|
|
855
|
+
*
|
|
856
|
+
* @type {string}
|
|
857
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
858
|
+
*/
|
|
859
|
+
readonly startTime?: string
|
|
860
|
+
|
|
861
|
+
/**
|
|
862
|
+
*
|
|
863
|
+
* @type {string}
|
|
864
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
865
|
+
*/
|
|
866
|
+
readonly endTime?: string
|
|
867
|
+
|
|
868
|
+
/**
|
|
869
|
+
*
|
|
870
|
+
* @type {Array<'ELECTRIC' | 'WATER'>}
|
|
871
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
872
|
+
*/
|
|
873
|
+
readonly energyTypes?: Array<EnergyCostAddRecordListExportEnergyTypesEnum>
|
|
874
|
+
|
|
875
|
+
/**
|
|
876
|
+
*
|
|
877
|
+
* @type {Array<number>}
|
|
878
|
+
* @memberof EnergyCostRecordControllerApiEnergyCostAddRecordListExport
|
|
879
|
+
*/
|
|
880
|
+
readonly status?: Array<number>
|
|
881
|
+
}
|
|
882
|
+
|
|
729
883
|
/**
|
|
730
884
|
* Request parameters for energyCostAddRecordNext operation in EnergyCostRecordControllerApi.
|
|
731
885
|
* @export
|
|
@@ -837,6 +991,18 @@ export class EnergyCostRecordControllerApi extends BaseAPI {
|
|
|
837
991
|
return 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));
|
|
838
992
|
}
|
|
839
993
|
|
|
994
|
+
/**
|
|
995
|
+
*
|
|
996
|
+
* @summary 新增能源消耗-列表导出
|
|
997
|
+
* @param {EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest} requestParameters Request parameters.
|
|
998
|
+
* @param {*} [options] Override http request option.
|
|
999
|
+
* @throws {RequiredError}
|
|
1000
|
+
* @memberof EnergyCostRecordControllerApi
|
|
1001
|
+
*/
|
|
1002
|
+
public energyCostAddRecordListExport(requestParameters: EnergyCostRecordControllerApiEnergyCostAddRecordListExportRequest = {}, options?: RawAxiosRequestConfig) {
|
|
1003
|
+
return 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));
|
|
1004
|
+
}
|
|
1005
|
+
|
|
840
1006
|
/**
|
|
841
1007
|
* 用于前端实时计算,返回计算结果,但不会将数据存入数据库。
|
|
842
1008
|
* @summary 计算能源消耗(不保存)
|
|
@@ -894,3 +1060,11 @@ export const EnergyCostAddRecordListEnergyTypesEnum = {
|
|
|
894
1060
|
Water: 'WATER'
|
|
895
1061
|
} as const;
|
|
896
1062
|
export type EnergyCostAddRecordListEnergyTypesEnum = typeof EnergyCostAddRecordListEnergyTypesEnum[keyof typeof EnergyCostAddRecordListEnergyTypesEnum];
|
|
1063
|
+
/**
|
|
1064
|
+
* @export
|
|
1065
|
+
*/
|
|
1066
|
+
export const EnergyCostAddRecordListExportEnergyTypesEnum = {
|
|
1067
|
+
Electric: 'ELECTRIC',
|
|
1068
|
+
Water: 'WATER'
|
|
1069
|
+
} as const;
|
|
1070
|
+
export type EnergyCostAddRecordListExportEnergyTypesEnum = typeof EnergyCostAddRecordListExportEnergyTypesEnum[keyof typeof EnergyCostAddRecordListExportEnergyTypesEnum];
|
|
@@ -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 二级面板-单平单价分析
|