@gizone/rrs-client 4.2.9-alpha.539 → 4.2.9-alpha.540
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/.openapi-generator/FILES +2 -1
- package/api.ts +2 -1
- package/apis/energy-cost-controller-api.ts +678 -0
- package/apis/energy-cost-record-controller-api.ts +686 -0
- package/dist/api.d.ts +2 -1
- package/dist/api.js +2 -1
- package/dist/apis/energy-cost-controller-api.d.ts +371 -0
- package/dist/apis/energy-cost-controller-api.js +525 -0
- package/dist/apis/energy-cost-record-controller-api.d.ts +377 -0
- package/dist/apis/energy-cost-record-controller-api.js +523 -0
- package/dist/esm/api.d.ts +2 -1
- package/dist/esm/api.js +2 -1
- package/dist/esm/apis/energy-cost-controller-api.d.ts +371 -0
- package/dist/esm/apis/energy-cost-controller-api.js +518 -0
- package/dist/esm/apis/energy-cost-record-controller-api.d.ts +377 -0
- package/dist/esm/apis/energy-cost-record-controller-api.js +516 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
- package/dist/models/sys-user.d.ts +4 -4
- package/models/ipage-energy-cost-record-info-vo.ts +6 -6
- package/models/sys-user.ts +4 -4
- package/ossutil.log +1056 -1056
- package/package.json +1 -1
- package/apis/default-api.ts +0 -1302
- package/dist/apis/default-api.d.ts +0 -707
- package/dist/apis/default-api.js +0 -979
- package/dist/esm/apis/default-api.d.ts +0 -707
- package/dist/esm/apis/default-api.js +0 -972
|
@@ -0,0 +1,678 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import type { Configuration } from '../configuration';
|
|
17
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
18
|
+
import globalAxios from 'axios';
|
|
19
|
+
// Some imports not used depending on template conditions
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
|
|
22
|
+
// @ts-ignore
|
|
23
|
+
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
|
|
24
|
+
// @ts-ignore
|
|
25
|
+
import type { EnergyCostAddSettingDTO } from '../models';
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
import type { EnergyCostSettingSummyAddDTO } from '../models';
|
|
28
|
+
// @ts-ignore
|
|
29
|
+
import type { EnergyCostSettingSummyUpdateDTO } from '../models';
|
|
30
|
+
// @ts-ignore
|
|
31
|
+
import type { EnergyCostUpdateSettingDTO } from '../models';
|
|
32
|
+
// @ts-ignore
|
|
33
|
+
import type { JsonResult } from '../models';
|
|
34
|
+
// @ts-ignore
|
|
35
|
+
import type { JsonResultListEnergyCostMonthSettingListSummaryStandardsVO } from '../models';
|
|
36
|
+
// @ts-ignore
|
|
37
|
+
import type { JsonResultListEnergyCostMonthSettingListVO } from '../models';
|
|
38
|
+
/**
|
|
39
|
+
* EnergyCostControllerApi - axios parameter creator
|
|
40
|
+
* @export
|
|
41
|
+
*/
|
|
42
|
+
export const EnergyCostControllerApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
43
|
+
return {
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @summary 新增能源费用管理设置-单条新增
|
|
47
|
+
* @param {EnergyCostAddSettingDTO} energyCostAddSettingDTO
|
|
48
|
+
* @param {*} [options] Override http request option.
|
|
49
|
+
* @throws {RequiredError}
|
|
50
|
+
*/
|
|
51
|
+
energyCostMonthSettingAdd: async (energyCostAddSettingDTO: EnergyCostAddSettingDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
52
|
+
// verify required parameter 'energyCostAddSettingDTO' is not null or undefined
|
|
53
|
+
assertParamExists('energyCostMonthSettingAdd', 'energyCostAddSettingDTO', energyCostAddSettingDTO)
|
|
54
|
+
const localVarPath = `/gizone/energy/cost/month/setting`;
|
|
55
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
56
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
57
|
+
let baseOptions;
|
|
58
|
+
if (configuration) {
|
|
59
|
+
baseOptions = configuration.baseOptions;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
63
|
+
const localVarHeaderParameter = {} as any;
|
|
64
|
+
const localVarQueryParameter = {} as any;
|
|
65
|
+
|
|
66
|
+
// authentication tokenScheme required
|
|
67
|
+
// http bearer authentication required
|
|
68
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
73
|
+
|
|
74
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
75
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
76
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
77
|
+
localVarRequestOptions.data = serializeDataIfNeeded(energyCostAddSettingDTO, localVarRequestOptions, configuration)
|
|
78
|
+
|
|
79
|
+
return {
|
|
80
|
+
url: toPathString(localVarUrlObj),
|
|
81
|
+
options: localVarRequestOptions,
|
|
82
|
+
};
|
|
83
|
+
},
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @summary 新增能源费用管理设置-列表-默认当前筛选前后一年
|
|
87
|
+
* @param {EnergyCostMonthSettingListEnergyTypeEnum} energyType
|
|
88
|
+
* @param {string} [startTime]
|
|
89
|
+
* @param {string} [endTime]
|
|
90
|
+
* @param {*} [options] Override http request option.
|
|
91
|
+
* @throws {RequiredError}
|
|
92
|
+
*/
|
|
93
|
+
energyCostMonthSettingList: async (energyType: EnergyCostMonthSettingListEnergyTypeEnum, startTime?: string, endTime?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
94
|
+
// verify required parameter 'energyType' is not null or undefined
|
|
95
|
+
assertParamExists('energyCostMonthSettingList', 'energyType', energyType)
|
|
96
|
+
const localVarPath = `/gizone/energy/cost/month/setting`;
|
|
97
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
98
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
99
|
+
let baseOptions;
|
|
100
|
+
if (configuration) {
|
|
101
|
+
baseOptions = configuration.baseOptions;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
105
|
+
const localVarHeaderParameter = {} as any;
|
|
106
|
+
const localVarQueryParameter = {} as any;
|
|
107
|
+
|
|
108
|
+
// authentication tokenScheme required
|
|
109
|
+
// http bearer authentication required
|
|
110
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
111
|
+
|
|
112
|
+
if (startTime !== undefined) {
|
|
113
|
+
localVarQueryParameter['startTime'] = startTime;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
if (endTime !== undefined) {
|
|
117
|
+
localVarQueryParameter['endTime'] = endTime;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
if (energyType !== undefined) {
|
|
121
|
+
localVarQueryParameter['energyType'] = energyType;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
127
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
128
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
129
|
+
|
|
130
|
+
return {
|
|
131
|
+
url: toPathString(localVarUrlObj),
|
|
132
|
+
options: localVarRequestOptions,
|
|
133
|
+
};
|
|
134
|
+
},
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @summary 新增能源费用管理设置-园区汇总标准新增
|
|
138
|
+
* @param {EnergyCostSettingSummyAddDTO} energyCostSettingSummyAddDTO
|
|
139
|
+
* @param {*} [options] Override http request option.
|
|
140
|
+
* @throws {RequiredError}
|
|
141
|
+
*/
|
|
142
|
+
energyCostMonthSettingSummaryAdd: async (energyCostSettingSummyAddDTO: EnergyCostSettingSummyAddDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
143
|
+
// verify required parameter 'energyCostSettingSummyAddDTO' is not null or undefined
|
|
144
|
+
assertParamExists('energyCostMonthSettingSummaryAdd', 'energyCostSettingSummyAddDTO', energyCostSettingSummyAddDTO)
|
|
145
|
+
const localVarPath = `/gizone/energy/cost/month/setting/summaryStandards`;
|
|
146
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
147
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
148
|
+
let baseOptions;
|
|
149
|
+
if (configuration) {
|
|
150
|
+
baseOptions = configuration.baseOptions;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
154
|
+
const localVarHeaderParameter = {} as any;
|
|
155
|
+
const localVarQueryParameter = {} as any;
|
|
156
|
+
|
|
157
|
+
// authentication tokenScheme required
|
|
158
|
+
// http bearer authentication required
|
|
159
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
164
|
+
|
|
165
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
166
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
167
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
168
|
+
localVarRequestOptions.data = serializeDataIfNeeded(energyCostSettingSummyAddDTO, localVarRequestOptions, configuration)
|
|
169
|
+
|
|
170
|
+
return {
|
|
171
|
+
url: toPathString(localVarUrlObj),
|
|
172
|
+
options: localVarRequestOptions,
|
|
173
|
+
};
|
|
174
|
+
},
|
|
175
|
+
/**
|
|
176
|
+
*
|
|
177
|
+
* @summary 新增能源费用管理设置-列表-查询园区汇总标准
|
|
178
|
+
* @param {EnergyCostMonthSettingSummaryListEnergyTypeEnum} energyType
|
|
179
|
+
* @param {string} [startTime]
|
|
180
|
+
* @param {string} [endTime]
|
|
181
|
+
* @param {*} [options] Override http request option.
|
|
182
|
+
* @throws {RequiredError}
|
|
183
|
+
*/
|
|
184
|
+
energyCostMonthSettingSummaryList: async (energyType: EnergyCostMonthSettingSummaryListEnergyTypeEnum, startTime?: string, endTime?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
185
|
+
// verify required parameter 'energyType' is not null or undefined
|
|
186
|
+
assertParamExists('energyCostMonthSettingSummaryList', 'energyType', energyType)
|
|
187
|
+
const localVarPath = `/gizone/energy/cost/month/setting/summaryStandards`;
|
|
188
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
189
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
190
|
+
let baseOptions;
|
|
191
|
+
if (configuration) {
|
|
192
|
+
baseOptions = configuration.baseOptions;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
196
|
+
const localVarHeaderParameter = {} as any;
|
|
197
|
+
const localVarQueryParameter = {} as any;
|
|
198
|
+
|
|
199
|
+
// authentication tokenScheme required
|
|
200
|
+
// http bearer authentication required
|
|
201
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
202
|
+
|
|
203
|
+
if (startTime !== undefined) {
|
|
204
|
+
localVarQueryParameter['startTime'] = startTime;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
if (endTime !== undefined) {
|
|
208
|
+
localVarQueryParameter['endTime'] = endTime;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
if (energyType !== undefined) {
|
|
212
|
+
localVarQueryParameter['energyType'] = energyType;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
218
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
219
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
220
|
+
|
|
221
|
+
return {
|
|
222
|
+
url: toPathString(localVarUrlObj),
|
|
223
|
+
options: localVarRequestOptions,
|
|
224
|
+
};
|
|
225
|
+
},
|
|
226
|
+
/**
|
|
227
|
+
*
|
|
228
|
+
* @summary 新增能源费用管理设置-园区汇总标准修改
|
|
229
|
+
* @param {EnergyCostSettingSummyUpdateDTO} energyCostSettingSummyUpdateDTO
|
|
230
|
+
* @param {*} [options] Override http request option.
|
|
231
|
+
* @throws {RequiredError}
|
|
232
|
+
*/
|
|
233
|
+
energyCostMonthSettingSummaryUpdate: async (energyCostSettingSummyUpdateDTO: EnergyCostSettingSummyUpdateDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
234
|
+
// verify required parameter 'energyCostSettingSummyUpdateDTO' is not null or undefined
|
|
235
|
+
assertParamExists('energyCostMonthSettingSummaryUpdate', 'energyCostSettingSummyUpdateDTO', energyCostSettingSummyUpdateDTO)
|
|
236
|
+
const localVarPath = `/gizone/energy/cost/month/setting/summaryStandards`;
|
|
237
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
238
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
239
|
+
let baseOptions;
|
|
240
|
+
if (configuration) {
|
|
241
|
+
baseOptions = configuration.baseOptions;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
245
|
+
const localVarHeaderParameter = {} as any;
|
|
246
|
+
const localVarQueryParameter = {} as any;
|
|
247
|
+
|
|
248
|
+
// authentication tokenScheme required
|
|
249
|
+
// http bearer authentication required
|
|
250
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
255
|
+
|
|
256
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
257
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
258
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
259
|
+
localVarRequestOptions.data = serializeDataIfNeeded(energyCostSettingSummyUpdateDTO, localVarRequestOptions, configuration)
|
|
260
|
+
|
|
261
|
+
return {
|
|
262
|
+
url: toPathString(localVarUrlObj),
|
|
263
|
+
options: localVarRequestOptions,
|
|
264
|
+
};
|
|
265
|
+
},
|
|
266
|
+
/**
|
|
267
|
+
*
|
|
268
|
+
* @summary 新增能源费用管理设置-单条修改
|
|
269
|
+
* @param {EnergyCostUpdateSettingDTO} energyCostUpdateSettingDTO
|
|
270
|
+
* @param {*} [options] Override http request option.
|
|
271
|
+
* @throws {RequiredError}
|
|
272
|
+
*/
|
|
273
|
+
energyCostMonthSettingUpdate: async (energyCostUpdateSettingDTO: EnergyCostUpdateSettingDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
274
|
+
// verify required parameter 'energyCostUpdateSettingDTO' is not null or undefined
|
|
275
|
+
assertParamExists('energyCostMonthSettingUpdate', 'energyCostUpdateSettingDTO', energyCostUpdateSettingDTO)
|
|
276
|
+
const localVarPath = `/gizone/energy/cost/month/setting`;
|
|
277
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
278
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
279
|
+
let baseOptions;
|
|
280
|
+
if (configuration) {
|
|
281
|
+
baseOptions = configuration.baseOptions;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
285
|
+
const localVarHeaderParameter = {} as any;
|
|
286
|
+
const localVarQueryParameter = {} as any;
|
|
287
|
+
|
|
288
|
+
// authentication tokenScheme required
|
|
289
|
+
// http bearer authentication required
|
|
290
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
295
|
+
|
|
296
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
297
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
298
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
299
|
+
localVarRequestOptions.data = serializeDataIfNeeded(energyCostUpdateSettingDTO, localVarRequestOptions, configuration)
|
|
300
|
+
|
|
301
|
+
return {
|
|
302
|
+
url: toPathString(localVarUrlObj),
|
|
303
|
+
options: localVarRequestOptions,
|
|
304
|
+
};
|
|
305
|
+
},
|
|
306
|
+
}
|
|
307
|
+
};
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* EnergyCostControllerApi - functional programming interface
|
|
311
|
+
* @export
|
|
312
|
+
*/
|
|
313
|
+
export const EnergyCostControllerApiFp = function(configuration?: Configuration) {
|
|
314
|
+
const localVarAxiosParamCreator = EnergyCostControllerApiAxiosParamCreator(configuration)
|
|
315
|
+
return {
|
|
316
|
+
/**
|
|
317
|
+
*
|
|
318
|
+
* @summary 新增能源费用管理设置-单条新增
|
|
319
|
+
* @param {EnergyCostAddSettingDTO} energyCostAddSettingDTO
|
|
320
|
+
* @param {*} [options] Override http request option.
|
|
321
|
+
* @throws {RequiredError}
|
|
322
|
+
*/
|
|
323
|
+
async energyCostMonthSettingAdd(energyCostAddSettingDTO: EnergyCostAddSettingDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
|
|
324
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.energyCostMonthSettingAdd(energyCostAddSettingDTO, options);
|
|
325
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
326
|
+
const localVarOperationServerBasePath = operationServerMap['EnergyCostControllerApi.energyCostMonthSettingAdd']?.[localVarOperationServerIndex]?.url;
|
|
327
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
328
|
+
},
|
|
329
|
+
/**
|
|
330
|
+
*
|
|
331
|
+
* @summary 新增能源费用管理设置-列表-默认当前筛选前后一年
|
|
332
|
+
* @param {EnergyCostMonthSettingListEnergyTypeEnum} energyType
|
|
333
|
+
* @param {string} [startTime]
|
|
334
|
+
* @param {string} [endTime]
|
|
335
|
+
* @param {*} [options] Override http request option.
|
|
336
|
+
* @throws {RequiredError}
|
|
337
|
+
*/
|
|
338
|
+
async energyCostMonthSettingList(energyType: EnergyCostMonthSettingListEnergyTypeEnum, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListEnergyCostMonthSettingListVO>> {
|
|
339
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.energyCostMonthSettingList(energyType, startTime, endTime, options);
|
|
340
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
341
|
+
const localVarOperationServerBasePath = operationServerMap['EnergyCostControllerApi.energyCostMonthSettingList']?.[localVarOperationServerIndex]?.url;
|
|
342
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
343
|
+
},
|
|
344
|
+
/**
|
|
345
|
+
*
|
|
346
|
+
* @summary 新增能源费用管理设置-园区汇总标准新增
|
|
347
|
+
* @param {EnergyCostSettingSummyAddDTO} energyCostSettingSummyAddDTO
|
|
348
|
+
* @param {*} [options] Override http request option.
|
|
349
|
+
* @throws {RequiredError}
|
|
350
|
+
*/
|
|
351
|
+
async energyCostMonthSettingSummaryAdd(energyCostSettingSummyAddDTO: EnergyCostSettingSummyAddDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
|
|
352
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.energyCostMonthSettingSummaryAdd(energyCostSettingSummyAddDTO, options);
|
|
353
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
354
|
+
const localVarOperationServerBasePath = operationServerMap['EnergyCostControllerApi.energyCostMonthSettingSummaryAdd']?.[localVarOperationServerIndex]?.url;
|
|
355
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
356
|
+
},
|
|
357
|
+
/**
|
|
358
|
+
*
|
|
359
|
+
* @summary 新增能源费用管理设置-列表-查询园区汇总标准
|
|
360
|
+
* @param {EnergyCostMonthSettingSummaryListEnergyTypeEnum} energyType
|
|
361
|
+
* @param {string} [startTime]
|
|
362
|
+
* @param {string} [endTime]
|
|
363
|
+
* @param {*} [options] Override http request option.
|
|
364
|
+
* @throws {RequiredError}
|
|
365
|
+
*/
|
|
366
|
+
async energyCostMonthSettingSummaryList(energyType: EnergyCostMonthSettingSummaryListEnergyTypeEnum, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListEnergyCostMonthSettingListSummaryStandardsVO>> {
|
|
367
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.energyCostMonthSettingSummaryList(energyType, startTime, endTime, options);
|
|
368
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
369
|
+
const localVarOperationServerBasePath = operationServerMap['EnergyCostControllerApi.energyCostMonthSettingSummaryList']?.[localVarOperationServerIndex]?.url;
|
|
370
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
371
|
+
},
|
|
372
|
+
/**
|
|
373
|
+
*
|
|
374
|
+
* @summary 新增能源费用管理设置-园区汇总标准修改
|
|
375
|
+
* @param {EnergyCostSettingSummyUpdateDTO} energyCostSettingSummyUpdateDTO
|
|
376
|
+
* @param {*} [options] Override http request option.
|
|
377
|
+
* @throws {RequiredError}
|
|
378
|
+
*/
|
|
379
|
+
async energyCostMonthSettingSummaryUpdate(energyCostSettingSummyUpdateDTO: EnergyCostSettingSummyUpdateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
|
|
380
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.energyCostMonthSettingSummaryUpdate(energyCostSettingSummyUpdateDTO, options);
|
|
381
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
382
|
+
const localVarOperationServerBasePath = operationServerMap['EnergyCostControllerApi.energyCostMonthSettingSummaryUpdate']?.[localVarOperationServerIndex]?.url;
|
|
383
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
384
|
+
},
|
|
385
|
+
/**
|
|
386
|
+
*
|
|
387
|
+
* @summary 新增能源费用管理设置-单条修改
|
|
388
|
+
* @param {EnergyCostUpdateSettingDTO} energyCostUpdateSettingDTO
|
|
389
|
+
* @param {*} [options] Override http request option.
|
|
390
|
+
* @throws {RequiredError}
|
|
391
|
+
*/
|
|
392
|
+
async energyCostMonthSettingUpdate(energyCostUpdateSettingDTO: EnergyCostUpdateSettingDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
|
|
393
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.energyCostMonthSettingUpdate(energyCostUpdateSettingDTO, options);
|
|
394
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
395
|
+
const localVarOperationServerBasePath = operationServerMap['EnergyCostControllerApi.energyCostMonthSettingUpdate']?.[localVarOperationServerIndex]?.url;
|
|
396
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
397
|
+
},
|
|
398
|
+
}
|
|
399
|
+
};
|
|
400
|
+
|
|
401
|
+
/**
|
|
402
|
+
* EnergyCostControllerApi - factory interface
|
|
403
|
+
* @export
|
|
404
|
+
*/
|
|
405
|
+
export const EnergyCostControllerApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
406
|
+
const localVarFp = EnergyCostControllerApiFp(configuration)
|
|
407
|
+
return {
|
|
408
|
+
/**
|
|
409
|
+
*
|
|
410
|
+
* @summary 新增能源费用管理设置-单条新增
|
|
411
|
+
* @param {EnergyCostControllerApiEnergyCostMonthSettingAddRequest} requestParameters Request parameters.
|
|
412
|
+
* @param {*} [options] Override http request option.
|
|
413
|
+
* @throws {RequiredError}
|
|
414
|
+
*/
|
|
415
|
+
energyCostMonthSettingAdd(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
|
|
416
|
+
return localVarFp.energyCostMonthSettingAdd(requestParameters.energyCostAddSettingDTO, options).then((request) => request(axios, basePath));
|
|
417
|
+
},
|
|
418
|
+
/**
|
|
419
|
+
*
|
|
420
|
+
* @summary 新增能源费用管理设置-列表-默认当前筛选前后一年
|
|
421
|
+
* @param {EnergyCostControllerApiEnergyCostMonthSettingListRequest} requestParameters Request parameters.
|
|
422
|
+
* @param {*} [options] Override http request option.
|
|
423
|
+
* @throws {RequiredError}
|
|
424
|
+
*/
|
|
425
|
+
energyCostMonthSettingList(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListEnergyCostMonthSettingListVO> {
|
|
426
|
+
return localVarFp.energyCostMonthSettingList(requestParameters.energyType, requestParameters.startTime, requestParameters.endTime, options).then((request) => request(axios, basePath));
|
|
427
|
+
},
|
|
428
|
+
/**
|
|
429
|
+
*
|
|
430
|
+
* @summary 新增能源费用管理设置-园区汇总标准新增
|
|
431
|
+
* @param {EnergyCostControllerApiEnergyCostMonthSettingSummaryAddRequest} requestParameters Request parameters.
|
|
432
|
+
* @param {*} [options] Override http request option.
|
|
433
|
+
* @throws {RequiredError}
|
|
434
|
+
*/
|
|
435
|
+
energyCostMonthSettingSummaryAdd(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingSummaryAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
|
|
436
|
+
return localVarFp.energyCostMonthSettingSummaryAdd(requestParameters.energyCostSettingSummyAddDTO, options).then((request) => request(axios, basePath));
|
|
437
|
+
},
|
|
438
|
+
/**
|
|
439
|
+
*
|
|
440
|
+
* @summary 新增能源费用管理设置-列表-查询园区汇总标准
|
|
441
|
+
* @param {EnergyCostControllerApiEnergyCostMonthSettingSummaryListRequest} requestParameters Request parameters.
|
|
442
|
+
* @param {*} [options] Override http request option.
|
|
443
|
+
* @throws {RequiredError}
|
|
444
|
+
*/
|
|
445
|
+
energyCostMonthSettingSummaryList(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingSummaryListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListEnergyCostMonthSettingListSummaryStandardsVO> {
|
|
446
|
+
return localVarFp.energyCostMonthSettingSummaryList(requestParameters.energyType, requestParameters.startTime, requestParameters.endTime, options).then((request) => request(axios, basePath));
|
|
447
|
+
},
|
|
448
|
+
/**
|
|
449
|
+
*
|
|
450
|
+
* @summary 新增能源费用管理设置-园区汇总标准修改
|
|
451
|
+
* @param {EnergyCostControllerApiEnergyCostMonthSettingSummaryUpdateRequest} requestParameters Request parameters.
|
|
452
|
+
* @param {*} [options] Override http request option.
|
|
453
|
+
* @throws {RequiredError}
|
|
454
|
+
*/
|
|
455
|
+
energyCostMonthSettingSummaryUpdate(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingSummaryUpdateRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
|
|
456
|
+
return localVarFp.energyCostMonthSettingSummaryUpdate(requestParameters.energyCostSettingSummyUpdateDTO, options).then((request) => request(axios, basePath));
|
|
457
|
+
},
|
|
458
|
+
/**
|
|
459
|
+
*
|
|
460
|
+
* @summary 新增能源费用管理设置-单条修改
|
|
461
|
+
* @param {EnergyCostControllerApiEnergyCostMonthSettingUpdateRequest} requestParameters Request parameters.
|
|
462
|
+
* @param {*} [options] Override http request option.
|
|
463
|
+
* @throws {RequiredError}
|
|
464
|
+
*/
|
|
465
|
+
energyCostMonthSettingUpdate(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingUpdateRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
|
|
466
|
+
return localVarFp.energyCostMonthSettingUpdate(requestParameters.energyCostUpdateSettingDTO, options).then((request) => request(axios, basePath));
|
|
467
|
+
},
|
|
468
|
+
};
|
|
469
|
+
};
|
|
470
|
+
|
|
471
|
+
/**
|
|
472
|
+
* Request parameters for energyCostMonthSettingAdd operation in EnergyCostControllerApi.
|
|
473
|
+
* @export
|
|
474
|
+
* @interface EnergyCostControllerApiEnergyCostMonthSettingAddRequest
|
|
475
|
+
*/
|
|
476
|
+
export interface EnergyCostControllerApiEnergyCostMonthSettingAddRequest {
|
|
477
|
+
/**
|
|
478
|
+
*
|
|
479
|
+
* @type {EnergyCostAddSettingDTO}
|
|
480
|
+
* @memberof EnergyCostControllerApiEnergyCostMonthSettingAdd
|
|
481
|
+
*/
|
|
482
|
+
readonly energyCostAddSettingDTO: EnergyCostAddSettingDTO
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
/**
|
|
486
|
+
* Request parameters for energyCostMonthSettingList operation in EnergyCostControllerApi.
|
|
487
|
+
* @export
|
|
488
|
+
* @interface EnergyCostControllerApiEnergyCostMonthSettingListRequest
|
|
489
|
+
*/
|
|
490
|
+
export interface EnergyCostControllerApiEnergyCostMonthSettingListRequest {
|
|
491
|
+
/**
|
|
492
|
+
*
|
|
493
|
+
* @type {'ELECTRIC' | 'WATER'}
|
|
494
|
+
* @memberof EnergyCostControllerApiEnergyCostMonthSettingList
|
|
495
|
+
*/
|
|
496
|
+
readonly energyType: EnergyCostMonthSettingListEnergyTypeEnum
|
|
497
|
+
|
|
498
|
+
/**
|
|
499
|
+
*
|
|
500
|
+
* @type {string}
|
|
501
|
+
* @memberof EnergyCostControllerApiEnergyCostMonthSettingList
|
|
502
|
+
*/
|
|
503
|
+
readonly startTime?: string
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
*
|
|
507
|
+
* @type {string}
|
|
508
|
+
* @memberof EnergyCostControllerApiEnergyCostMonthSettingList
|
|
509
|
+
*/
|
|
510
|
+
readonly endTime?: string
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
/**
|
|
514
|
+
* Request parameters for energyCostMonthSettingSummaryAdd operation in EnergyCostControllerApi.
|
|
515
|
+
* @export
|
|
516
|
+
* @interface EnergyCostControllerApiEnergyCostMonthSettingSummaryAddRequest
|
|
517
|
+
*/
|
|
518
|
+
export interface EnergyCostControllerApiEnergyCostMonthSettingSummaryAddRequest {
|
|
519
|
+
/**
|
|
520
|
+
*
|
|
521
|
+
* @type {EnergyCostSettingSummyAddDTO}
|
|
522
|
+
* @memberof EnergyCostControllerApiEnergyCostMonthSettingSummaryAdd
|
|
523
|
+
*/
|
|
524
|
+
readonly energyCostSettingSummyAddDTO: EnergyCostSettingSummyAddDTO
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
/**
|
|
528
|
+
* Request parameters for energyCostMonthSettingSummaryList operation in EnergyCostControllerApi.
|
|
529
|
+
* @export
|
|
530
|
+
* @interface EnergyCostControllerApiEnergyCostMonthSettingSummaryListRequest
|
|
531
|
+
*/
|
|
532
|
+
export interface EnergyCostControllerApiEnergyCostMonthSettingSummaryListRequest {
|
|
533
|
+
/**
|
|
534
|
+
*
|
|
535
|
+
* @type {'ELECTRIC' | 'WATER'}
|
|
536
|
+
* @memberof EnergyCostControllerApiEnergyCostMonthSettingSummaryList
|
|
537
|
+
*/
|
|
538
|
+
readonly energyType: EnergyCostMonthSettingSummaryListEnergyTypeEnum
|
|
539
|
+
|
|
540
|
+
/**
|
|
541
|
+
*
|
|
542
|
+
* @type {string}
|
|
543
|
+
* @memberof EnergyCostControllerApiEnergyCostMonthSettingSummaryList
|
|
544
|
+
*/
|
|
545
|
+
readonly startTime?: string
|
|
546
|
+
|
|
547
|
+
/**
|
|
548
|
+
*
|
|
549
|
+
* @type {string}
|
|
550
|
+
* @memberof EnergyCostControllerApiEnergyCostMonthSettingSummaryList
|
|
551
|
+
*/
|
|
552
|
+
readonly endTime?: string
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
/**
|
|
556
|
+
* Request parameters for energyCostMonthSettingSummaryUpdate operation in EnergyCostControllerApi.
|
|
557
|
+
* @export
|
|
558
|
+
* @interface EnergyCostControllerApiEnergyCostMonthSettingSummaryUpdateRequest
|
|
559
|
+
*/
|
|
560
|
+
export interface EnergyCostControllerApiEnergyCostMonthSettingSummaryUpdateRequest {
|
|
561
|
+
/**
|
|
562
|
+
*
|
|
563
|
+
* @type {EnergyCostSettingSummyUpdateDTO}
|
|
564
|
+
* @memberof EnergyCostControllerApiEnergyCostMonthSettingSummaryUpdate
|
|
565
|
+
*/
|
|
566
|
+
readonly energyCostSettingSummyUpdateDTO: EnergyCostSettingSummyUpdateDTO
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* Request parameters for energyCostMonthSettingUpdate operation in EnergyCostControllerApi.
|
|
571
|
+
* @export
|
|
572
|
+
* @interface EnergyCostControllerApiEnergyCostMonthSettingUpdateRequest
|
|
573
|
+
*/
|
|
574
|
+
export interface EnergyCostControllerApiEnergyCostMonthSettingUpdateRequest {
|
|
575
|
+
/**
|
|
576
|
+
*
|
|
577
|
+
* @type {EnergyCostUpdateSettingDTO}
|
|
578
|
+
* @memberof EnergyCostControllerApiEnergyCostMonthSettingUpdate
|
|
579
|
+
*/
|
|
580
|
+
readonly energyCostUpdateSettingDTO: EnergyCostUpdateSettingDTO
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
/**
|
|
584
|
+
* EnergyCostControllerApi - object-oriented interface
|
|
585
|
+
* @export
|
|
586
|
+
* @class EnergyCostControllerApi
|
|
587
|
+
* @extends {BaseAPI}
|
|
588
|
+
*/
|
|
589
|
+
export class EnergyCostControllerApi extends BaseAPI {
|
|
590
|
+
/**
|
|
591
|
+
*
|
|
592
|
+
* @summary 新增能源费用管理设置-单条新增
|
|
593
|
+
* @param {EnergyCostControllerApiEnergyCostMonthSettingAddRequest} requestParameters Request parameters.
|
|
594
|
+
* @param {*} [options] Override http request option.
|
|
595
|
+
* @throws {RequiredError}
|
|
596
|
+
* @memberof EnergyCostControllerApi
|
|
597
|
+
*/
|
|
598
|
+
public energyCostMonthSettingAdd(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingAddRequest, options?: RawAxiosRequestConfig) {
|
|
599
|
+
return EnergyCostControllerApiFp(this.configuration).energyCostMonthSettingAdd(requestParameters.energyCostAddSettingDTO, options).then((request) => request(this.axios, this.basePath));
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
*
|
|
604
|
+
* @summary 新增能源费用管理设置-列表-默认当前筛选前后一年
|
|
605
|
+
* @param {EnergyCostControllerApiEnergyCostMonthSettingListRequest} requestParameters Request parameters.
|
|
606
|
+
* @param {*} [options] Override http request option.
|
|
607
|
+
* @throws {RequiredError}
|
|
608
|
+
* @memberof EnergyCostControllerApi
|
|
609
|
+
*/
|
|
610
|
+
public energyCostMonthSettingList(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingListRequest, options?: RawAxiosRequestConfig) {
|
|
611
|
+
return EnergyCostControllerApiFp(this.configuration).energyCostMonthSettingList(requestParameters.energyType, requestParameters.startTime, requestParameters.endTime, options).then((request) => request(this.axios, this.basePath));
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
*
|
|
616
|
+
* @summary 新增能源费用管理设置-园区汇总标准新增
|
|
617
|
+
* @param {EnergyCostControllerApiEnergyCostMonthSettingSummaryAddRequest} requestParameters Request parameters.
|
|
618
|
+
* @param {*} [options] Override http request option.
|
|
619
|
+
* @throws {RequiredError}
|
|
620
|
+
* @memberof EnergyCostControllerApi
|
|
621
|
+
*/
|
|
622
|
+
public energyCostMonthSettingSummaryAdd(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingSummaryAddRequest, options?: RawAxiosRequestConfig) {
|
|
623
|
+
return EnergyCostControllerApiFp(this.configuration).energyCostMonthSettingSummaryAdd(requestParameters.energyCostSettingSummyAddDTO, options).then((request) => request(this.axios, this.basePath));
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
*
|
|
628
|
+
* @summary 新增能源费用管理设置-列表-查询园区汇总标准
|
|
629
|
+
* @param {EnergyCostControllerApiEnergyCostMonthSettingSummaryListRequest} requestParameters Request parameters.
|
|
630
|
+
* @param {*} [options] Override http request option.
|
|
631
|
+
* @throws {RequiredError}
|
|
632
|
+
* @memberof EnergyCostControllerApi
|
|
633
|
+
*/
|
|
634
|
+
public energyCostMonthSettingSummaryList(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingSummaryListRequest, options?: RawAxiosRequestConfig) {
|
|
635
|
+
return EnergyCostControllerApiFp(this.configuration).energyCostMonthSettingSummaryList(requestParameters.energyType, requestParameters.startTime, requestParameters.endTime, options).then((request) => request(this.axios, this.basePath));
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
/**
|
|
639
|
+
*
|
|
640
|
+
* @summary 新增能源费用管理设置-园区汇总标准修改
|
|
641
|
+
* @param {EnergyCostControllerApiEnergyCostMonthSettingSummaryUpdateRequest} requestParameters Request parameters.
|
|
642
|
+
* @param {*} [options] Override http request option.
|
|
643
|
+
* @throws {RequiredError}
|
|
644
|
+
* @memberof EnergyCostControllerApi
|
|
645
|
+
*/
|
|
646
|
+
public energyCostMonthSettingSummaryUpdate(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingSummaryUpdateRequest, options?: RawAxiosRequestConfig) {
|
|
647
|
+
return EnergyCostControllerApiFp(this.configuration).energyCostMonthSettingSummaryUpdate(requestParameters.energyCostSettingSummyUpdateDTO, options).then((request) => request(this.axios, this.basePath));
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
/**
|
|
651
|
+
*
|
|
652
|
+
* @summary 新增能源费用管理设置-单条修改
|
|
653
|
+
* @param {EnergyCostControllerApiEnergyCostMonthSettingUpdateRequest} requestParameters Request parameters.
|
|
654
|
+
* @param {*} [options] Override http request option.
|
|
655
|
+
* @throws {RequiredError}
|
|
656
|
+
* @memberof EnergyCostControllerApi
|
|
657
|
+
*/
|
|
658
|
+
public energyCostMonthSettingUpdate(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingUpdateRequest, options?: RawAxiosRequestConfig) {
|
|
659
|
+
return EnergyCostControllerApiFp(this.configuration).energyCostMonthSettingUpdate(requestParameters.energyCostUpdateSettingDTO, options).then((request) => request(this.axios, this.basePath));
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
/**
|
|
664
|
+
* @export
|
|
665
|
+
*/
|
|
666
|
+
export const EnergyCostMonthSettingListEnergyTypeEnum = {
|
|
667
|
+
Electric: 'ELECTRIC',
|
|
668
|
+
Water: 'WATER'
|
|
669
|
+
} as const;
|
|
670
|
+
export type EnergyCostMonthSettingListEnergyTypeEnum = typeof EnergyCostMonthSettingListEnergyTypeEnum[keyof typeof EnergyCostMonthSettingListEnergyTypeEnum];
|
|
671
|
+
/**
|
|
672
|
+
* @export
|
|
673
|
+
*/
|
|
674
|
+
export const EnergyCostMonthSettingSummaryListEnergyTypeEnum = {
|
|
675
|
+
Electric: 'ELECTRIC',
|
|
676
|
+
Water: 'WATER'
|
|
677
|
+
} as const;
|
|
678
|
+
export type EnergyCostMonthSettingSummaryListEnergyTypeEnum = typeof EnergyCostMonthSettingSummaryListEnergyTypeEnum[keyof typeof EnergyCostMonthSettingSummaryListEnergyTypeEnum];
|