@gizone/rrs-client 4.2.9-alpha.537 → 4.2.9-alpha.538
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 +0 -1
- package/apis/energy-cost-controller-api.ts +199 -178
- package/dist/apis/energy-cost-controller-api.d.ts +113 -98
- package/dist/apis/energy-cost-controller-api.js +154 -140
- package/dist/esm/apis/energy-cost-controller-api.d.ts +113 -98
- package/dist/esm/apis/energy-cost-controller-api.js +153 -139
- package/dist/esm/models/energy-cost-add-record-dto.d.ts +22 -0
- package/dist/esm/models/energy-cost-add-record-dto.js +9 -0
- package/dist/esm/models/energy-cost-month-setting-list-vo.d.ts +41 -35
- package/dist/esm/models/energy-cost-month-setting-list-vo.js +1 -10
- package/dist/esm/models/energy-cost-record-info-vo.d.ts +40 -0
- package/dist/esm/models/energy-cost-record-info-vo.js +9 -0
- package/dist/esm/models/energy-cost-scenarios-info-vo.d.ts +11 -1
- package/dist/esm/models/energy-cost-scenarios-info-vo.js +9 -0
- package/dist/esm/models/index.d.ts +0 -1
- package/dist/esm/models/index.js +0 -1
- package/dist/esm/models/item.d.ts +22 -0
- package/dist/esm/models/item.js +9 -0
- package/dist/models/energy-cost-add-record-dto.d.ts +22 -0
- package/dist/models/energy-cost-add-record-dto.js +10 -1
- package/dist/models/energy-cost-month-setting-list-vo.d.ts +41 -35
- package/dist/models/energy-cost-month-setting-list-vo.js +0 -11
- package/dist/models/energy-cost-record-info-vo.d.ts +40 -0
- package/dist/models/energy-cost-record-info-vo.js +10 -1
- package/dist/models/energy-cost-scenarios-info-vo.d.ts +11 -1
- package/dist/models/energy-cost-scenarios-info-vo.js +10 -1
- package/dist/models/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/dist/models/item.d.ts +22 -0
- package/dist/models/item.js +10 -1
- package/models/energy-cost-add-record-dto.ts +23 -0
- package/models/energy-cost-month-setting-list-vo.ts +41 -39
- package/models/energy-cost-record-info-vo.ts +41 -0
- package/models/energy-cost-scenarios-info-vo.ts +12 -1
- package/models/index.ts +0 -1
- package/models/item.ts +23 -0
- package/ossutil.log +1050 -1047
- package/package.json +1 -1
- package/dist/esm/models/energy-cost-confirm-record-dto.d.ts +0 -42
- package/dist/esm/models/energy-cost-confirm-record-dto.js +0 -17
- package/dist/models/energy-cost-confirm-record-dto.d.ts +0 -42
- package/dist/models/energy-cost-confirm-record-dto.js +0 -20
- package/models/energy-cost-confirm-record-dto.ts +0 -53
|
@@ -14,7 +14,6 @@ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import type { EnergyCostAddRecordDTO } from '../models';
|
|
16
16
|
import type { EnergyCostAddSettingDTO } from '../models';
|
|
17
|
-
import type { EnergyCostConfirmRecordDTO } from '../models';
|
|
18
17
|
import type { EnergyCostUpdateSettingDTO } from '../models';
|
|
19
18
|
import type { JsonResult } from '../models';
|
|
20
19
|
import type { JsonResultEnergyCostRecordInfoVO } from '../models';
|
|
@@ -26,14 +25,6 @@ import type { JsonResultMapStringObject } from '../models';
|
|
|
26
25
|
* @export
|
|
27
26
|
*/
|
|
28
27
|
export declare const EnergyCostControllerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @summary 新增能源消耗-提交
|
|
32
|
-
* @param {EnergyCostConfirmRecordDTO} energyCostConfirmRecordDTO
|
|
33
|
-
* @param {*} [options] Override http request option.
|
|
34
|
-
* @throws {RequiredError}
|
|
35
|
-
*/
|
|
36
|
-
energyCostAddRecordConfirm: (energyCostConfirmRecordDTO: EnergyCostConfirmRecordDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
37
28
|
/**
|
|
38
29
|
*
|
|
39
30
|
* @summary 新增能源消耗-返回详情
|
|
@@ -42,14 +33,6 @@ export declare const EnergyCostControllerApiAxiosParamCreator: (configuration?:
|
|
|
42
33
|
* @throws {RequiredError}
|
|
43
34
|
*/
|
|
44
35
|
energyCostAddRecordDetail: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* @summary 新增能源消耗-录入
|
|
48
|
-
* @param {EnergyCostAddRecordDTO} energyCostAddRecordDTO
|
|
49
|
-
* @param {*} [options] Override http request option.
|
|
50
|
-
* @throws {RequiredError}
|
|
51
|
-
*/
|
|
52
|
-
energyCostAddRecordInput: (energyCostAddRecordDTO: EnergyCostAddRecordDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
36
|
/**
|
|
54
37
|
*
|
|
55
38
|
* @summary 新增能源消耗-录入保存为草稿
|
|
@@ -63,7 +46,7 @@ export declare const EnergyCostControllerApiAxiosParamCreator: (configuration?:
|
|
|
63
46
|
* @summary 新增能源消耗-列表
|
|
64
47
|
* @param {number} [page]
|
|
65
48
|
* @param {number} [size]
|
|
66
|
-
* @param {string} [
|
|
49
|
+
* @param {string} [billCode]
|
|
67
50
|
* @param {string} [startTime]
|
|
68
51
|
* @param {string} [endTime]
|
|
69
52
|
* @param {EnergyCostAddRecordListEnergyTypeEnum} [energyType]
|
|
@@ -71,7 +54,23 @@ export declare const EnergyCostControllerApiAxiosParamCreator: (configuration?:
|
|
|
71
54
|
* @param {*} [options] Override http request option.
|
|
72
55
|
* @throws {RequiredError}
|
|
73
56
|
*/
|
|
74
|
-
energyCostAddRecordList: (page?: number, size?: number,
|
|
57
|
+
energyCostAddRecordList: (page?: number, size?: number, billCode?: string, startTime?: string, endTime?: string, energyType?: EnergyCostAddRecordListEnergyTypeEnum, status?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @summary 新增能源消耗-next
|
|
61
|
+
* @param {EnergyCostAddRecordDTO} energyCostAddRecordDTO
|
|
62
|
+
* @param {*} [options] Override http request option.
|
|
63
|
+
* @throws {RequiredError}
|
|
64
|
+
*/
|
|
65
|
+
energyCostAddRecordNext: (energyCostAddRecordDTO: EnergyCostAddRecordDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @summary 新增能源消耗-提交
|
|
69
|
+
* @param {EnergyCostAddRecordDTO} energyCostAddRecordDTO
|
|
70
|
+
* @param {*} [options] Override http request option.
|
|
71
|
+
* @throws {RequiredError}
|
|
72
|
+
*/
|
|
73
|
+
energyCostAddRecordSubmit: (energyCostAddRecordDTO: EnergyCostAddRecordDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
75
74
|
/**
|
|
76
75
|
*
|
|
77
76
|
* @summary 新增能源费用管理设置-单条新增
|
|
@@ -83,12 +82,13 @@ export declare const EnergyCostControllerApiAxiosParamCreator: (configuration?:
|
|
|
83
82
|
/**
|
|
84
83
|
*
|
|
85
84
|
* @summary 新增能源费用管理设置-列表-默认当前筛选前后一年
|
|
85
|
+
* @param {EnergyCostMonthSettingListEnergyTypeEnum} energyType
|
|
86
86
|
* @param {string} [startTime]
|
|
87
87
|
* @param {string} [endTime]
|
|
88
88
|
* @param {*} [options] Override http request option.
|
|
89
89
|
* @throws {RequiredError}
|
|
90
90
|
*/
|
|
91
|
-
energyCostMonthSettingList: (startTime?: string, endTime?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
91
|
+
energyCostMonthSettingList: (energyType: EnergyCostMonthSettingListEnergyTypeEnum, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
92
92
|
/**
|
|
93
93
|
*
|
|
94
94
|
* @summary 新增能源费用管理设置-单条修改
|
|
@@ -111,14 +111,6 @@ export declare const EnergyCostControllerApiAxiosParamCreator: (configuration?:
|
|
|
111
111
|
* @export
|
|
112
112
|
*/
|
|
113
113
|
export declare const EnergyCostControllerApiFp: (configuration?: Configuration) => {
|
|
114
|
-
/**
|
|
115
|
-
*
|
|
116
|
-
* @summary 新增能源消耗-提交
|
|
117
|
-
* @param {EnergyCostConfirmRecordDTO} energyCostConfirmRecordDTO
|
|
118
|
-
* @param {*} [options] Override http request option.
|
|
119
|
-
* @throws {RequiredError}
|
|
120
|
-
*/
|
|
121
|
-
energyCostAddRecordConfirm(energyCostConfirmRecordDTO: EnergyCostConfirmRecordDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
|
|
122
114
|
/**
|
|
123
115
|
*
|
|
124
116
|
* @summary 新增能源消耗-返回详情
|
|
@@ -127,14 +119,6 @@ export declare const EnergyCostControllerApiFp: (configuration?: Configuration)
|
|
|
127
119
|
* @throws {RequiredError}
|
|
128
120
|
*/
|
|
129
121
|
energyCostAddRecordDetail(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultEnergyCostRecordInfoVO>>;
|
|
130
|
-
/**
|
|
131
|
-
*
|
|
132
|
-
* @summary 新增能源消耗-录入
|
|
133
|
-
* @param {EnergyCostAddRecordDTO} energyCostAddRecordDTO
|
|
134
|
-
* @param {*} [options] Override http request option.
|
|
135
|
-
* @throws {RequiredError}
|
|
136
|
-
*/
|
|
137
|
-
energyCostAddRecordInput(energyCostAddRecordDTO: EnergyCostAddRecordDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
|
|
138
122
|
/**
|
|
139
123
|
*
|
|
140
124
|
* @summary 新增能源消耗-录入保存为草稿
|
|
@@ -148,7 +132,7 @@ export declare const EnergyCostControllerApiFp: (configuration?: Configuration)
|
|
|
148
132
|
* @summary 新增能源消耗-列表
|
|
149
133
|
* @param {number} [page]
|
|
150
134
|
* @param {number} [size]
|
|
151
|
-
* @param {string} [
|
|
135
|
+
* @param {string} [billCode]
|
|
152
136
|
* @param {string} [startTime]
|
|
153
137
|
* @param {string} [endTime]
|
|
154
138
|
* @param {EnergyCostAddRecordListEnergyTypeEnum} [energyType]
|
|
@@ -156,7 +140,23 @@ export declare const EnergyCostControllerApiFp: (configuration?: Configuration)
|
|
|
156
140
|
* @param {*} [options] Override http request option.
|
|
157
141
|
* @throws {RequiredError}
|
|
158
142
|
*/
|
|
159
|
-
energyCostAddRecordList(page?: number, size?: number,
|
|
143
|
+
energyCostAddRecordList(page?: number, size?: number, billCode?: string, startTime?: string, endTime?: string, energyType?: EnergyCostAddRecordListEnergyTypeEnum, status?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultIPageEnergyCostRecordInfoVO>>;
|
|
144
|
+
/**
|
|
145
|
+
*
|
|
146
|
+
* @summary 新增能源消耗-next
|
|
147
|
+
* @param {EnergyCostAddRecordDTO} energyCostAddRecordDTO
|
|
148
|
+
* @param {*} [options] Override http request option.
|
|
149
|
+
* @throws {RequiredError}
|
|
150
|
+
*/
|
|
151
|
+
energyCostAddRecordNext(energyCostAddRecordDTO: EnergyCostAddRecordDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @summary 新增能源消耗-提交
|
|
155
|
+
* @param {EnergyCostAddRecordDTO} energyCostAddRecordDTO
|
|
156
|
+
* @param {*} [options] Override http request option.
|
|
157
|
+
* @throws {RequiredError}
|
|
158
|
+
*/
|
|
159
|
+
energyCostAddRecordSubmit(energyCostAddRecordDTO: EnergyCostAddRecordDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
|
|
160
160
|
/**
|
|
161
161
|
*
|
|
162
162
|
* @summary 新增能源费用管理设置-单条新增
|
|
@@ -168,12 +168,13 @@ export declare const EnergyCostControllerApiFp: (configuration?: Configuration)
|
|
|
168
168
|
/**
|
|
169
169
|
*
|
|
170
170
|
* @summary 新增能源费用管理设置-列表-默认当前筛选前后一年
|
|
171
|
+
* @param {EnergyCostMonthSettingListEnergyTypeEnum} energyType
|
|
171
172
|
* @param {string} [startTime]
|
|
172
173
|
* @param {string} [endTime]
|
|
173
174
|
* @param {*} [options] Override http request option.
|
|
174
175
|
* @throws {RequiredError}
|
|
175
176
|
*/
|
|
176
|
-
energyCostMonthSettingList(startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListEnergyCostMonthSettingListVO>>;
|
|
177
|
+
energyCostMonthSettingList(energyType: EnergyCostMonthSettingListEnergyTypeEnum, startTime?: string, endTime?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListEnergyCostMonthSettingListVO>>;
|
|
177
178
|
/**
|
|
178
179
|
*
|
|
179
180
|
* @summary 新增能源费用管理设置-单条修改
|
|
@@ -198,44 +199,44 @@ export declare const EnergyCostControllerApiFp: (configuration?: Configuration)
|
|
|
198
199
|
export declare const EnergyCostControllerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
199
200
|
/**
|
|
200
201
|
*
|
|
201
|
-
* @summary
|
|
202
|
-
* @param {
|
|
202
|
+
* @summary 新增能源消耗-返回详情
|
|
203
|
+
* @param {EnergyCostControllerApiEnergyCostAddRecordDetailRequest} requestParameters Request parameters.
|
|
203
204
|
* @param {*} [options] Override http request option.
|
|
204
205
|
* @throws {RequiredError}
|
|
205
206
|
*/
|
|
206
|
-
|
|
207
|
+
energyCostAddRecordDetail(requestParameters: EnergyCostControllerApiEnergyCostAddRecordDetailRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultEnergyCostRecordInfoVO>;
|
|
207
208
|
/**
|
|
208
209
|
*
|
|
209
|
-
* @summary
|
|
210
|
-
* @param {
|
|
210
|
+
* @summary 新增能源消耗-录入保存为草稿
|
|
211
|
+
* @param {EnergyCostControllerApiEnergyCostAddRecordInputDraftRequest} requestParameters Request parameters.
|
|
211
212
|
* @param {*} [options] Override http request option.
|
|
212
213
|
* @throws {RequiredError}
|
|
213
214
|
*/
|
|
214
|
-
|
|
215
|
+
energyCostAddRecordInputDraft(requestParameters: EnergyCostControllerApiEnergyCostAddRecordInputDraftRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
|
|
215
216
|
/**
|
|
216
217
|
*
|
|
217
|
-
* @summary
|
|
218
|
-
* @param {
|
|
218
|
+
* @summary 新增能源消耗-列表
|
|
219
|
+
* @param {EnergyCostControllerApiEnergyCostAddRecordListRequest} requestParameters Request parameters.
|
|
219
220
|
* @param {*} [options] Override http request option.
|
|
220
221
|
* @throws {RequiredError}
|
|
221
222
|
*/
|
|
222
|
-
|
|
223
|
+
energyCostAddRecordList(requestParameters?: EnergyCostControllerApiEnergyCostAddRecordListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultIPageEnergyCostRecordInfoVO>;
|
|
223
224
|
/**
|
|
224
225
|
*
|
|
225
|
-
* @summary
|
|
226
|
-
* @param {
|
|
226
|
+
* @summary 新增能源消耗-next
|
|
227
|
+
* @param {EnergyCostControllerApiEnergyCostAddRecordNextRequest} requestParameters Request parameters.
|
|
227
228
|
* @param {*} [options] Override http request option.
|
|
228
229
|
* @throws {RequiredError}
|
|
229
230
|
*/
|
|
230
|
-
|
|
231
|
+
energyCostAddRecordNext(requestParameters: EnergyCostControllerApiEnergyCostAddRecordNextRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
|
|
231
232
|
/**
|
|
232
233
|
*
|
|
233
|
-
* @summary
|
|
234
|
-
* @param {
|
|
234
|
+
* @summary 新增能源消耗-提交
|
|
235
|
+
* @param {EnergyCostControllerApiEnergyCostAddRecordSubmitRequest} requestParameters Request parameters.
|
|
235
236
|
* @param {*} [options] Override http request option.
|
|
236
237
|
* @throws {RequiredError}
|
|
237
238
|
*/
|
|
238
|
-
|
|
239
|
+
energyCostAddRecordSubmit(requestParameters: EnergyCostControllerApiEnergyCostAddRecordSubmitRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
|
|
239
240
|
/**
|
|
240
241
|
*
|
|
241
242
|
* @summary 新增能源费用管理设置-单条新增
|
|
@@ -251,7 +252,7 @@ export declare const EnergyCostControllerApiFactory: (configuration?: Configurat
|
|
|
251
252
|
* @param {*} [options] Override http request option.
|
|
252
253
|
* @throws {RequiredError}
|
|
253
254
|
*/
|
|
254
|
-
energyCostMonthSettingList(requestParameters
|
|
255
|
+
energyCostMonthSettingList(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListEnergyCostMonthSettingListVO>;
|
|
255
256
|
/**
|
|
256
257
|
*
|
|
257
258
|
* @summary 新增能源费用管理设置-单条修改
|
|
@@ -269,19 +270,6 @@ export declare const EnergyCostControllerApiFactory: (configuration?: Configurat
|
|
|
269
270
|
*/
|
|
270
271
|
getOptions(requestParameters?: EnergyCostControllerApiGetOptionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultMapStringObject>;
|
|
271
272
|
};
|
|
272
|
-
/**
|
|
273
|
-
* Request parameters for energyCostAddRecordConfirm operation in EnergyCostControllerApi.
|
|
274
|
-
* @export
|
|
275
|
-
* @interface EnergyCostControllerApiEnergyCostAddRecordConfirmRequest
|
|
276
|
-
*/
|
|
277
|
-
export interface EnergyCostControllerApiEnergyCostAddRecordConfirmRequest {
|
|
278
|
-
/**
|
|
279
|
-
*
|
|
280
|
-
* @type {EnergyCostConfirmRecordDTO}
|
|
281
|
-
* @memberof EnergyCostControllerApiEnergyCostAddRecordConfirm
|
|
282
|
-
*/
|
|
283
|
-
readonly energyCostConfirmRecordDTO: EnergyCostConfirmRecordDTO;
|
|
284
|
-
}
|
|
285
273
|
/**
|
|
286
274
|
* Request parameters for energyCostAddRecordDetail operation in EnergyCostControllerApi.
|
|
287
275
|
* @export
|
|
@@ -295,19 +283,6 @@ export interface EnergyCostControllerApiEnergyCostAddRecordDetailRequest {
|
|
|
295
283
|
*/
|
|
296
284
|
readonly id: number;
|
|
297
285
|
}
|
|
298
|
-
/**
|
|
299
|
-
* Request parameters for energyCostAddRecordInput operation in EnergyCostControllerApi.
|
|
300
|
-
* @export
|
|
301
|
-
* @interface EnergyCostControllerApiEnergyCostAddRecordInputRequest
|
|
302
|
-
*/
|
|
303
|
-
export interface EnergyCostControllerApiEnergyCostAddRecordInputRequest {
|
|
304
|
-
/**
|
|
305
|
-
*
|
|
306
|
-
* @type {EnergyCostAddRecordDTO}
|
|
307
|
-
* @memberof EnergyCostControllerApiEnergyCostAddRecordInput
|
|
308
|
-
*/
|
|
309
|
-
readonly energyCostAddRecordDTO: EnergyCostAddRecordDTO;
|
|
310
|
-
}
|
|
311
286
|
/**
|
|
312
287
|
* Request parameters for energyCostAddRecordInputDraft operation in EnergyCostControllerApi.
|
|
313
288
|
* @export
|
|
@@ -344,7 +319,7 @@ export interface EnergyCostControllerApiEnergyCostAddRecordListRequest {
|
|
|
344
319
|
* @type {string}
|
|
345
320
|
* @memberof EnergyCostControllerApiEnergyCostAddRecordList
|
|
346
321
|
*/
|
|
347
|
-
readonly
|
|
322
|
+
readonly billCode?: string;
|
|
348
323
|
/**
|
|
349
324
|
*
|
|
350
325
|
* @type {string}
|
|
@@ -370,6 +345,32 @@ export interface EnergyCostControllerApiEnergyCostAddRecordListRequest {
|
|
|
370
345
|
*/
|
|
371
346
|
readonly status?: number;
|
|
372
347
|
}
|
|
348
|
+
/**
|
|
349
|
+
* Request parameters for energyCostAddRecordNext operation in EnergyCostControllerApi.
|
|
350
|
+
* @export
|
|
351
|
+
* @interface EnergyCostControllerApiEnergyCostAddRecordNextRequest
|
|
352
|
+
*/
|
|
353
|
+
export interface EnergyCostControllerApiEnergyCostAddRecordNextRequest {
|
|
354
|
+
/**
|
|
355
|
+
*
|
|
356
|
+
* @type {EnergyCostAddRecordDTO}
|
|
357
|
+
* @memberof EnergyCostControllerApiEnergyCostAddRecordNext
|
|
358
|
+
*/
|
|
359
|
+
readonly energyCostAddRecordDTO: EnergyCostAddRecordDTO;
|
|
360
|
+
}
|
|
361
|
+
/**
|
|
362
|
+
* Request parameters for energyCostAddRecordSubmit operation in EnergyCostControllerApi.
|
|
363
|
+
* @export
|
|
364
|
+
* @interface EnergyCostControllerApiEnergyCostAddRecordSubmitRequest
|
|
365
|
+
*/
|
|
366
|
+
export interface EnergyCostControllerApiEnergyCostAddRecordSubmitRequest {
|
|
367
|
+
/**
|
|
368
|
+
*
|
|
369
|
+
* @type {EnergyCostAddRecordDTO}
|
|
370
|
+
* @memberof EnergyCostControllerApiEnergyCostAddRecordSubmit
|
|
371
|
+
*/
|
|
372
|
+
readonly energyCostAddRecordDTO: EnergyCostAddRecordDTO;
|
|
373
|
+
}
|
|
373
374
|
/**
|
|
374
375
|
* Request parameters for energyCostMonthSettingAdd operation in EnergyCostControllerApi.
|
|
375
376
|
* @export
|
|
@@ -389,6 +390,12 @@ export interface EnergyCostControllerApiEnergyCostMonthSettingAddRequest {
|
|
|
389
390
|
* @interface EnergyCostControllerApiEnergyCostMonthSettingListRequest
|
|
390
391
|
*/
|
|
391
392
|
export interface EnergyCostControllerApiEnergyCostMonthSettingListRequest {
|
|
393
|
+
/**
|
|
394
|
+
*
|
|
395
|
+
* @type {'ELECTRIC' | 'WATER'}
|
|
396
|
+
* @memberof EnergyCostControllerApiEnergyCostMonthSettingList
|
|
397
|
+
*/
|
|
398
|
+
readonly energyType: EnergyCostMonthSettingListEnergyTypeEnum;
|
|
392
399
|
/**
|
|
393
400
|
*
|
|
394
401
|
* @type {string}
|
|
@@ -437,49 +444,49 @@ export interface EnergyCostControllerApiGetOptionsRequest {
|
|
|
437
444
|
export declare class EnergyCostControllerApi extends BaseAPI {
|
|
438
445
|
/**
|
|
439
446
|
*
|
|
440
|
-
* @summary
|
|
441
|
-
* @param {
|
|
447
|
+
* @summary 新增能源消耗-返回详情
|
|
448
|
+
* @param {EnergyCostControllerApiEnergyCostAddRecordDetailRequest} requestParameters Request parameters.
|
|
442
449
|
* @param {*} [options] Override http request option.
|
|
443
450
|
* @throws {RequiredError}
|
|
444
451
|
* @memberof EnergyCostControllerApi
|
|
445
452
|
*/
|
|
446
|
-
|
|
453
|
+
energyCostAddRecordDetail(requestParameters: EnergyCostControllerApiEnergyCostAddRecordDetailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultEnergyCostRecordInfoVO, any, {}>>;
|
|
447
454
|
/**
|
|
448
455
|
*
|
|
449
|
-
* @summary
|
|
450
|
-
* @param {
|
|
456
|
+
* @summary 新增能源消耗-录入保存为草稿
|
|
457
|
+
* @param {EnergyCostControllerApiEnergyCostAddRecordInputDraftRequest} requestParameters Request parameters.
|
|
451
458
|
* @param {*} [options] Override http request option.
|
|
452
459
|
* @throws {RequiredError}
|
|
453
460
|
* @memberof EnergyCostControllerApi
|
|
454
461
|
*/
|
|
455
|
-
|
|
462
|
+
energyCostAddRecordInputDraft(requestParameters: EnergyCostControllerApiEnergyCostAddRecordInputDraftRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any, {}>>;
|
|
456
463
|
/**
|
|
457
464
|
*
|
|
458
|
-
* @summary
|
|
459
|
-
* @param {
|
|
465
|
+
* @summary 新增能源消耗-列表
|
|
466
|
+
* @param {EnergyCostControllerApiEnergyCostAddRecordListRequest} requestParameters Request parameters.
|
|
460
467
|
* @param {*} [options] Override http request option.
|
|
461
468
|
* @throws {RequiredError}
|
|
462
469
|
* @memberof EnergyCostControllerApi
|
|
463
470
|
*/
|
|
464
|
-
|
|
471
|
+
energyCostAddRecordList(requestParameters?: EnergyCostControllerApiEnergyCostAddRecordListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultIPageEnergyCostRecordInfoVO, any, {}>>;
|
|
465
472
|
/**
|
|
466
473
|
*
|
|
467
|
-
* @summary
|
|
468
|
-
* @param {
|
|
474
|
+
* @summary 新增能源消耗-next
|
|
475
|
+
* @param {EnergyCostControllerApiEnergyCostAddRecordNextRequest} requestParameters Request parameters.
|
|
469
476
|
* @param {*} [options] Override http request option.
|
|
470
477
|
* @throws {RequiredError}
|
|
471
478
|
* @memberof EnergyCostControllerApi
|
|
472
479
|
*/
|
|
473
|
-
|
|
480
|
+
energyCostAddRecordNext(requestParameters: EnergyCostControllerApiEnergyCostAddRecordNextRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any, {}>>;
|
|
474
481
|
/**
|
|
475
482
|
*
|
|
476
|
-
* @summary
|
|
477
|
-
* @param {
|
|
483
|
+
* @summary 新增能源消耗-提交
|
|
484
|
+
* @param {EnergyCostControllerApiEnergyCostAddRecordSubmitRequest} requestParameters Request parameters.
|
|
478
485
|
* @param {*} [options] Override http request option.
|
|
479
486
|
* @throws {RequiredError}
|
|
480
487
|
* @memberof EnergyCostControllerApi
|
|
481
488
|
*/
|
|
482
|
-
|
|
489
|
+
energyCostAddRecordSubmit(requestParameters: EnergyCostControllerApiEnergyCostAddRecordSubmitRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any, {}>>;
|
|
483
490
|
/**
|
|
484
491
|
*
|
|
485
492
|
* @summary 新增能源费用管理设置-单条新增
|
|
@@ -497,7 +504,7 @@ export declare class EnergyCostControllerApi extends BaseAPI {
|
|
|
497
504
|
* @throws {RequiredError}
|
|
498
505
|
* @memberof EnergyCostControllerApi
|
|
499
506
|
*/
|
|
500
|
-
energyCostMonthSettingList(requestParameters
|
|
507
|
+
energyCostMonthSettingList(requestParameters: EnergyCostControllerApiEnergyCostMonthSettingListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListEnergyCostMonthSettingListVO, any, {}>>;
|
|
501
508
|
/**
|
|
502
509
|
*
|
|
503
510
|
* @summary 新增能源费用管理设置-单条修改
|
|
@@ -525,3 +532,11 @@ export declare const EnergyCostAddRecordListEnergyTypeEnum: {
|
|
|
525
532
|
readonly Water: "WATER";
|
|
526
533
|
};
|
|
527
534
|
export type EnergyCostAddRecordListEnergyTypeEnum = typeof EnergyCostAddRecordListEnergyTypeEnum[keyof typeof EnergyCostAddRecordListEnergyTypeEnum];
|
|
535
|
+
/**
|
|
536
|
+
* @export
|
|
537
|
+
*/
|
|
538
|
+
export declare const EnergyCostMonthSettingListEnergyTypeEnum: {
|
|
539
|
+
readonly Electric: "ELECTRIC";
|
|
540
|
+
readonly Water: "WATER";
|
|
541
|
+
};
|
|
542
|
+
export type EnergyCostMonthSettingListEnergyTypeEnum = typeof EnergyCostMonthSettingListEnergyTypeEnum[keyof typeof EnergyCostMonthSettingListEnergyTypeEnum];
|