@gizone/rrs-client 4.2.9-alpha.558 → 4.2.9-alpha.561

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. package/.openapi-generator/FILES +2 -0
  2. package/apis/energy-cost-analysis-controller-api.ts +358 -0
  3. package/dist/apis/energy-cost-analysis-controller-api.d.ts +185 -0
  4. package/dist/apis/energy-cost-analysis-controller-api.js +280 -0
  5. package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +185 -0
  6. package/dist/esm/apis/energy-cost-analysis-controller-api.js +280 -0
  7. package/dist/esm/models/energy-cost-add-record-dto.d.ts +2 -2
  8. package/dist/esm/models/index.d.ts +2 -0
  9. package/dist/esm/models/index.js +2 -0
  10. package/dist/esm/models/json-result-two-energy-consumption-summar-vo.d.ts +62 -0
  11. package/dist/esm/models/json-result-two-energy-consumption-summar-vo.js +14 -0
  12. package/dist/esm/models/two-energy-consumption-summar-vo.d.ts +30 -0
  13. package/dist/esm/models/two-energy-consumption-summar-vo.js +14 -0
  14. package/dist/models/energy-cost-add-record-dto.d.ts +2 -2
  15. package/dist/models/index.d.ts +2 -0
  16. package/dist/models/index.js +2 -0
  17. package/dist/models/json-result-two-energy-consumption-summar-vo.d.ts +62 -0
  18. package/dist/models/json-result-two-energy-consumption-summar-vo.js +15 -0
  19. package/dist/models/two-energy-consumption-summar-vo.d.ts +30 -0
  20. package/dist/models/two-energy-consumption-summar-vo.js +15 -0
  21. package/models/energy-cost-add-record-dto.ts +2 -2
  22. package/models/index.ts +2 -0
  23. package/models/json-result-two-energy-consumption-summar-vo.ts +72 -0
  24. package/models/two-energy-consumption-summar-vo.ts +36 -0
  25. package/ossutil.log +1089 -1086
  26. package/package.json +1 -1
@@ -164,6 +164,138 @@ export const EnergyCostAnalysisControllerApiAxiosParamCreator = function (config
164
164
  options: localVarRequestOptions,
165
165
  };
166
166
  }),
167
+ /**
168
+ * 二级面板
169
+ * @summary 二级面板-用能汇总
170
+ * @param {EnergyCostAnalysisQueryDTO} energyCostAnalysisQueryDTO
171
+ * @param {*} [options] Override http request option.
172
+ * @throws {RequiredError}
173
+ */
174
+ twoEnergyConsumptionSummar: (energyCostAnalysisQueryDTO_1, ...args_1) => __awaiter(this, [energyCostAnalysisQueryDTO_1, ...args_1], void 0, function* (energyCostAnalysisQueryDTO, options = {}) {
175
+ // verify required parameter 'energyCostAnalysisQueryDTO' is not null or undefined
176
+ assertParamExists('twoEnergyConsumptionSummar', 'energyCostAnalysisQueryDTO', energyCostAnalysisQueryDTO);
177
+ const localVarPath = `/gizone/energy/cost/analysis/two-energy-consumption-summar`;
178
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
179
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
180
+ let baseOptions;
181
+ if (configuration) {
182
+ baseOptions = configuration.baseOptions;
183
+ }
184
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
185
+ const localVarHeaderParameter = {};
186
+ const localVarQueryParameter = {};
187
+ // authentication tokenScheme required
188
+ // http bearer authentication required
189
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
190
+ localVarHeaderParameter['Content-Type'] = 'application/json';
191
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
192
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
193
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
194
+ localVarRequestOptions.data = serializeDataIfNeeded(energyCostAnalysisQueryDTO, localVarRequestOptions, configuration);
195
+ return {
196
+ url: toPathString(localVarUrlObj),
197
+ options: localVarRequestOptions,
198
+ };
199
+ }),
200
+ /**
201
+ * 二级面板
202
+ * @summary 二级面板-单平单价分析
203
+ * @param {EnergyCostAnalysisQueryDTO} energyCostAnalysisQueryDTO
204
+ * @param {*} [options] Override http request option.
205
+ * @throws {RequiredError}
206
+ */
207
+ twoPerAreaAnalysis: (energyCostAnalysisQueryDTO_1, ...args_1) => __awaiter(this, [energyCostAnalysisQueryDTO_1, ...args_1], void 0, function* (energyCostAnalysisQueryDTO, options = {}) {
208
+ // verify required parameter 'energyCostAnalysisQueryDTO' is not null or undefined
209
+ assertParamExists('twoPerAreaAnalysis', 'energyCostAnalysisQueryDTO', energyCostAnalysisQueryDTO);
210
+ const localVarPath = `/gizone/energy/cost/analysis/two-per-area-analysis`;
211
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
212
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
213
+ let baseOptions;
214
+ if (configuration) {
215
+ baseOptions = configuration.baseOptions;
216
+ }
217
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
218
+ const localVarHeaderParameter = {};
219
+ const localVarQueryParameter = {};
220
+ // authentication tokenScheme required
221
+ // http bearer authentication required
222
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
223
+ localVarHeaderParameter['Content-Type'] = 'application/json';
224
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
225
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
226
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
227
+ localVarRequestOptions.data = serializeDataIfNeeded(energyCostAnalysisQueryDTO, localVarRequestOptions, configuration);
228
+ return {
229
+ url: toPathString(localVarUrlObj),
230
+ options: localVarRequestOptions,
231
+ };
232
+ }),
233
+ /**
234
+ * 二级面板
235
+ * @summary 二级面板-单耗分析
236
+ * @param {EnergyCostAnalysisQueryDTO} energyCostAnalysisQueryDTO
237
+ * @param {*} [options] Override http request option.
238
+ * @throws {RequiredError}
239
+ */
240
+ twoPerUnitAnalysis: (energyCostAnalysisQueryDTO_1, ...args_1) => __awaiter(this, [energyCostAnalysisQueryDTO_1, ...args_1], void 0, function* (energyCostAnalysisQueryDTO, options = {}) {
241
+ // verify required parameter 'energyCostAnalysisQueryDTO' is not null or undefined
242
+ assertParamExists('twoPerUnitAnalysis', 'energyCostAnalysisQueryDTO', energyCostAnalysisQueryDTO);
243
+ const localVarPath = `/gizone/energy/cost/analysis/two-per-unit-analysis`;
244
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
245
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
246
+ let baseOptions;
247
+ if (configuration) {
248
+ baseOptions = configuration.baseOptions;
249
+ }
250
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
251
+ const localVarHeaderParameter = {};
252
+ const localVarQueryParameter = {};
253
+ // authentication tokenScheme required
254
+ // http bearer authentication required
255
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
256
+ localVarHeaderParameter['Content-Type'] = 'application/json';
257
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
258
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
259
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
260
+ localVarRequestOptions.data = serializeDataIfNeeded(energyCostAnalysisQueryDTO, localVarRequestOptions, configuration);
261
+ return {
262
+ url: toPathString(localVarUrlObj),
263
+ options: localVarRequestOptions,
264
+ };
265
+ }),
266
+ /**
267
+ * 二级面板
268
+ * @summary 二级面板-单价分析
269
+ * @param {EnergyCostAnalysisQueryDTO} energyCostAnalysisQueryDTO
270
+ * @param {*} [options] Override http request option.
271
+ * @throws {RequiredError}
272
+ */
273
+ twoUnitPriceAnalysis: (energyCostAnalysisQueryDTO_1, ...args_1) => __awaiter(this, [energyCostAnalysisQueryDTO_1, ...args_1], void 0, function* (energyCostAnalysisQueryDTO, options = {}) {
274
+ // verify required parameter 'energyCostAnalysisQueryDTO' is not null or undefined
275
+ assertParamExists('twoUnitPriceAnalysis', 'energyCostAnalysisQueryDTO', energyCostAnalysisQueryDTO);
276
+ const localVarPath = `/gizone/energy/cost/analysis/two-unit-price-analysis`;
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
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
284
+ const localVarHeaderParameter = {};
285
+ const localVarQueryParameter = {};
286
+ // authentication tokenScheme required
287
+ // http bearer authentication required
288
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
289
+ localVarHeaderParameter['Content-Type'] = 'application/json';
290
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
291
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
292
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
293
+ localVarRequestOptions.data = serializeDataIfNeeded(energyCostAnalysisQueryDTO, localVarRequestOptions, configuration);
294
+ return {
295
+ url: toPathString(localVarUrlObj),
296
+ options: localVarRequestOptions,
297
+ };
298
+ }),
167
299
  /**
168
300
  * 计算园区平均单价,包括当期、年平均、上月等指标
169
301
  * @summary 单价分析
@@ -270,6 +402,70 @@ export const EnergyCostAnalysisControllerApiFp = function (configuration) {
270
402
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
271
403
  });
272
404
  },
405
+ /**
406
+ * 二级面板
407
+ * @summary 二级面板-用能汇总
408
+ * @param {EnergyCostAnalysisQueryDTO} energyCostAnalysisQueryDTO
409
+ * @param {*} [options] Override http request option.
410
+ * @throws {RequiredError}
411
+ */
412
+ twoEnergyConsumptionSummar(energyCostAnalysisQueryDTO, options) {
413
+ return __awaiter(this, void 0, void 0, function* () {
414
+ var _a, _b, _c;
415
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.twoEnergyConsumptionSummar(energyCostAnalysisQueryDTO, options);
416
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
417
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnergyCostAnalysisControllerApi.twoEnergyConsumptionSummar']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
418
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
419
+ });
420
+ },
421
+ /**
422
+ * 二级面板
423
+ * @summary 二级面板-单平单价分析
424
+ * @param {EnergyCostAnalysisQueryDTO} energyCostAnalysisQueryDTO
425
+ * @param {*} [options] Override http request option.
426
+ * @throws {RequiredError}
427
+ */
428
+ twoPerAreaAnalysis(energyCostAnalysisQueryDTO, options) {
429
+ return __awaiter(this, void 0, void 0, function* () {
430
+ var _a, _b, _c;
431
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.twoPerAreaAnalysis(energyCostAnalysisQueryDTO, options);
432
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
433
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnergyCostAnalysisControllerApi.twoPerAreaAnalysis']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
434
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
435
+ });
436
+ },
437
+ /**
438
+ * 二级面板
439
+ * @summary 二级面板-单耗分析
440
+ * @param {EnergyCostAnalysisQueryDTO} energyCostAnalysisQueryDTO
441
+ * @param {*} [options] Override http request option.
442
+ * @throws {RequiredError}
443
+ */
444
+ twoPerUnitAnalysis(energyCostAnalysisQueryDTO, options) {
445
+ return __awaiter(this, void 0, void 0, function* () {
446
+ var _a, _b, _c;
447
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.twoPerUnitAnalysis(energyCostAnalysisQueryDTO, options);
448
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
449
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnergyCostAnalysisControllerApi.twoPerUnitAnalysis']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
450
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
451
+ });
452
+ },
453
+ /**
454
+ * 二级面板
455
+ * @summary 二级面板-单价分析
456
+ * @param {EnergyCostAnalysisQueryDTO} energyCostAnalysisQueryDTO
457
+ * @param {*} [options] Override http request option.
458
+ * @throws {RequiredError}
459
+ */
460
+ twoUnitPriceAnalysis(energyCostAnalysisQueryDTO, options) {
461
+ return __awaiter(this, void 0, void 0, function* () {
462
+ var _a, _b, _c;
463
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.twoUnitPriceAnalysis(energyCostAnalysisQueryDTO, options);
464
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
465
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnergyCostAnalysisControllerApi.twoUnitPriceAnalysis']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
466
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
467
+ });
468
+ },
273
469
  /**
274
470
  * 计算园区平均单价,包括当期、年平均、上月等指标
275
471
  * @summary 单价分析
@@ -335,6 +531,46 @@ export const EnergyCostAnalysisControllerApiFactory = function (configuration, b
335
531
  perUnitAnalysis(requestParameters, options) {
336
532
  return localVarFp.perUnitAnalysis(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(axios, basePath));
337
533
  },
534
+ /**
535
+ * 二级面板
536
+ * @summary 二级面板-用能汇总
537
+ * @param {EnergyCostAnalysisControllerApiTwoEnergyConsumptionSummarRequest} requestParameters Request parameters.
538
+ * @param {*} [options] Override http request option.
539
+ * @throws {RequiredError}
540
+ */
541
+ twoEnergyConsumptionSummar(requestParameters, options) {
542
+ return localVarFp.twoEnergyConsumptionSummar(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(axios, basePath));
543
+ },
544
+ /**
545
+ * 二级面板
546
+ * @summary 二级面板-单平单价分析
547
+ * @param {EnergyCostAnalysisControllerApiTwoPerAreaAnalysisRequest} requestParameters Request parameters.
548
+ * @param {*} [options] Override http request option.
549
+ * @throws {RequiredError}
550
+ */
551
+ twoPerAreaAnalysis(requestParameters, options) {
552
+ return localVarFp.twoPerAreaAnalysis(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(axios, basePath));
553
+ },
554
+ /**
555
+ * 二级面板
556
+ * @summary 二级面板-单耗分析
557
+ * @param {EnergyCostAnalysisControllerApiTwoPerUnitAnalysisRequest} requestParameters Request parameters.
558
+ * @param {*} [options] Override http request option.
559
+ * @throws {RequiredError}
560
+ */
561
+ twoPerUnitAnalysis(requestParameters, options) {
562
+ return localVarFp.twoPerUnitAnalysis(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(axios, basePath));
563
+ },
564
+ /**
565
+ * 二级面板
566
+ * @summary 二级面板-单价分析
567
+ * @param {EnergyCostAnalysisControllerApiTwoUnitPriceAnalysisRequest} requestParameters Request parameters.
568
+ * @param {*} [options] Override http request option.
569
+ * @throws {RequiredError}
570
+ */
571
+ twoUnitPriceAnalysis(requestParameters, options) {
572
+ return localVarFp.twoUnitPriceAnalysis(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(axios, basePath));
573
+ },
338
574
  /**
339
575
  * 计算园区平均单价,包括当期、年平均、上月等指标
340
576
  * @summary 单价分析
@@ -398,6 +634,50 @@ export class EnergyCostAnalysisControllerApi extends BaseAPI {
398
634
  perUnitAnalysis(requestParameters, options) {
399
635
  return EnergyCostAnalysisControllerApiFp(this.configuration).perUnitAnalysis(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(this.axios, this.basePath));
400
636
  }
637
+ /**
638
+ * 二级面板
639
+ * @summary 二级面板-用能汇总
640
+ * @param {EnergyCostAnalysisControllerApiTwoEnergyConsumptionSummarRequest} requestParameters Request parameters.
641
+ * @param {*} [options] Override http request option.
642
+ * @throws {RequiredError}
643
+ * @memberof EnergyCostAnalysisControllerApi
644
+ */
645
+ twoEnergyConsumptionSummar(requestParameters, options) {
646
+ return EnergyCostAnalysisControllerApiFp(this.configuration).twoEnergyConsumptionSummar(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(this.axios, this.basePath));
647
+ }
648
+ /**
649
+ * 二级面板
650
+ * @summary 二级面板-单平单价分析
651
+ * @param {EnergyCostAnalysisControllerApiTwoPerAreaAnalysisRequest} requestParameters Request parameters.
652
+ * @param {*} [options] Override http request option.
653
+ * @throws {RequiredError}
654
+ * @memberof EnergyCostAnalysisControllerApi
655
+ */
656
+ twoPerAreaAnalysis(requestParameters, options) {
657
+ return EnergyCostAnalysisControllerApiFp(this.configuration).twoPerAreaAnalysis(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(this.axios, this.basePath));
658
+ }
659
+ /**
660
+ * 二级面板
661
+ * @summary 二级面板-单耗分析
662
+ * @param {EnergyCostAnalysisControllerApiTwoPerUnitAnalysisRequest} requestParameters Request parameters.
663
+ * @param {*} [options] Override http request option.
664
+ * @throws {RequiredError}
665
+ * @memberof EnergyCostAnalysisControllerApi
666
+ */
667
+ twoPerUnitAnalysis(requestParameters, options) {
668
+ return EnergyCostAnalysisControllerApiFp(this.configuration).twoPerUnitAnalysis(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(this.axios, this.basePath));
669
+ }
670
+ /**
671
+ * 二级面板
672
+ * @summary 二级面板-单价分析
673
+ * @param {EnergyCostAnalysisControllerApiTwoUnitPriceAnalysisRequest} requestParameters Request parameters.
674
+ * @param {*} [options] Override http request option.
675
+ * @throws {RequiredError}
676
+ * @memberof EnergyCostAnalysisControllerApi
677
+ */
678
+ twoUnitPriceAnalysis(requestParameters, options) {
679
+ return EnergyCostAnalysisControllerApiFp(this.configuration).twoUnitPriceAnalysis(requestParameters.energyCostAnalysisQueryDTO, options).then((request) => request(this.axios, this.basePath));
680
+ }
401
681
  /**
402
682
  * 计算园区平均单价,包括当期、年平均、上月等指标
403
683
  * @summary 单价分析
@@ -82,13 +82,13 @@ export interface EnergyCostAddRecordDTO {
82
82
  * @type {number}
83
83
  * @memberof EnergyCostAddRecordDTO
84
84
  */
85
- 'powerFactorSurcharge': number;
85
+ 'powerFactorSurcharge'?: number;
86
86
  /**
87
87
  * 调前电费
88
88
  * @type {number}
89
89
  * @memberof EnergyCostAddRecordDTO
90
90
  */
91
- 'billAmountBefore': number;
91
+ 'billAmountBefore'?: number;
92
92
  /**
93
93
  * 单价
94
94
  * @type {number}
@@ -324,6 +324,7 @@ export * from './json-result-switch-park-v2-dto';
324
324
  export * from './json-result-sys-dept';
325
325
  export * from './json-result-sys-user';
326
326
  export * from './json-result-sys-user-msg-dto';
327
+ export * from './json-result-two-energy-consumption-summar-vo';
327
328
  export * from './json-result-user-add-redis-list-vo';
328
329
  export * from './json-result-user-settings-entity';
329
330
  export * from './json-result-violation-work-order-details-dto';
@@ -493,6 +494,7 @@ export * from './system-user-msg-source-type-enum';
493
494
  export * from './system-user-msg-type-enum';
494
495
  export * from './table-data-info';
495
496
  export * from './third-party-system-enum';
497
+ export * from './two-energy-consumption-summar-vo';
496
498
  export * from './user-add-redis-list-vo';
497
499
  export * from './user-batch-import-upload-request';
498
500
  export * from './user-bind-body';
@@ -324,6 +324,7 @@ export * from './json-result-switch-park-v2-dto';
324
324
  export * from './json-result-sys-dept';
325
325
  export * from './json-result-sys-user';
326
326
  export * from './json-result-sys-user-msg-dto';
327
+ export * from './json-result-two-energy-consumption-summar-vo';
327
328
  export * from './json-result-user-add-redis-list-vo';
328
329
  export * from './json-result-user-settings-entity';
329
330
  export * from './json-result-violation-work-order-details-dto';
@@ -493,6 +494,7 @@ export * from './system-user-msg-source-type-enum';
493
494
  export * from './system-user-msg-type-enum';
494
495
  export * from './table-data-info';
495
496
  export * from './third-party-system-enum';
497
+ export * from './two-energy-consumption-summar-vo';
496
498
  export * from './user-add-redis-list-vo';
497
499
  export * from './user-batch-import-upload-request';
498
500
  export * from './user-bind-body';
@@ -0,0 +1,62 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { BaseErrorResult } from './base-error-result';
13
+ import type { TwoEnergyConsumptionSummarVO } from './two-energy-consumption-summar-vo';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultTwoEnergyConsumptionSummarVO
18
+ */
19
+ export interface JsonResultTwoEnergyConsumptionSummarVO {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ *
40
+ * @type {TwoEnergyConsumptionSummarVO}
41
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
42
+ */
43
+ 'data'?: TwoEnergyConsumptionSummarVO | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
60
+ */
61
+ 'requestId'?: string | null;
62
+ }
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,30 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 能源成本用量趋势
14
+ * @export
15
+ * @interface TwoEnergyConsumptionSummarVO
16
+ */
17
+ export interface TwoEnergyConsumptionSummarVO {
18
+ /**
19
+ * 用量
20
+ * @type {number}
21
+ * @memberof TwoEnergyConsumptionSummarVO
22
+ */
23
+ 'parkUtilityUsage'?: number;
24
+ /**
25
+ * 费用
26
+ * @type {number}
27
+ * @memberof TwoEnergyConsumptionSummarVO
28
+ */
29
+ 'billCharges'?: number;
30
+ }
@@ -0,0 +1,14 @@
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
+ export {};
@@ -82,13 +82,13 @@ export interface EnergyCostAddRecordDTO {
82
82
  * @type {number}
83
83
  * @memberof EnergyCostAddRecordDTO
84
84
  */
85
- 'powerFactorSurcharge': number;
85
+ 'powerFactorSurcharge'?: number;
86
86
  /**
87
87
  * 调前电费
88
88
  * @type {number}
89
89
  * @memberof EnergyCostAddRecordDTO
90
90
  */
91
- 'billAmountBefore': number;
91
+ 'billAmountBefore'?: number;
92
92
  /**
93
93
  * 单价
94
94
  * @type {number}
@@ -324,6 +324,7 @@ export * from './json-result-switch-park-v2-dto';
324
324
  export * from './json-result-sys-dept';
325
325
  export * from './json-result-sys-user';
326
326
  export * from './json-result-sys-user-msg-dto';
327
+ export * from './json-result-two-energy-consumption-summar-vo';
327
328
  export * from './json-result-user-add-redis-list-vo';
328
329
  export * from './json-result-user-settings-entity';
329
330
  export * from './json-result-violation-work-order-details-dto';
@@ -493,6 +494,7 @@ export * from './system-user-msg-source-type-enum';
493
494
  export * from './system-user-msg-type-enum';
494
495
  export * from './table-data-info';
495
496
  export * from './third-party-system-enum';
497
+ export * from './two-energy-consumption-summar-vo';
496
498
  export * from './user-add-redis-list-vo';
497
499
  export * from './user-batch-import-upload-request';
498
500
  export * from './user-bind-body';
@@ -340,6 +340,7 @@ __exportStar(require("./json-result-switch-park-v2-dto"), exports);
340
340
  __exportStar(require("./json-result-sys-dept"), exports);
341
341
  __exportStar(require("./json-result-sys-user"), exports);
342
342
  __exportStar(require("./json-result-sys-user-msg-dto"), exports);
343
+ __exportStar(require("./json-result-two-energy-consumption-summar-vo"), exports);
343
344
  __exportStar(require("./json-result-user-add-redis-list-vo"), exports);
344
345
  __exportStar(require("./json-result-user-settings-entity"), exports);
345
346
  __exportStar(require("./json-result-violation-work-order-details-dto"), exports);
@@ -509,6 +510,7 @@ __exportStar(require("./system-user-msg-source-type-enum"), exports);
509
510
  __exportStar(require("./system-user-msg-type-enum"), exports);
510
511
  __exportStar(require("./table-data-info"), exports);
511
512
  __exportStar(require("./third-party-system-enum"), exports);
513
+ __exportStar(require("./two-energy-consumption-summar-vo"), exports);
512
514
  __exportStar(require("./user-add-redis-list-vo"), exports);
513
515
  __exportStar(require("./user-batch-import-upload-request"), exports);
514
516
  __exportStar(require("./user-bind-body"), exports);
@@ -0,0 +1,62 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { BaseErrorResult } from './base-error-result';
13
+ import type { TwoEnergyConsumptionSummarVO } from './two-energy-consumption-summar-vo';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultTwoEnergyConsumptionSummarVO
18
+ */
19
+ export interface JsonResultTwoEnergyConsumptionSummarVO {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ *
40
+ * @type {TwoEnergyConsumptionSummarVO}
41
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
42
+ */
43
+ 'data'?: TwoEnergyConsumptionSummarVO | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultTwoEnergyConsumptionSummarVO
60
+ */
61
+ 'requestId'?: string | null;
62
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,30 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 能源成本用量趋势
14
+ * @export
15
+ * @interface TwoEnergyConsumptionSummarVO
16
+ */
17
+ export interface TwoEnergyConsumptionSummarVO {
18
+ /**
19
+ * 用量
20
+ * @type {number}
21
+ * @memberof TwoEnergyConsumptionSummarVO
22
+ */
23
+ 'parkUtilityUsage'?: number;
24
+ /**
25
+ * 费用
26
+ * @type {number}
27
+ * @memberof TwoEnergyConsumptionSummarVO
28
+ */
29
+ 'billCharges'?: number;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });