@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.
- package/.openapi-generator/FILES +2 -0
- package/apis/energy-cost-analysis-controller-api.ts +358 -0
- package/dist/apis/energy-cost-analysis-controller-api.d.ts +185 -0
- package/dist/apis/energy-cost-analysis-controller-api.js +280 -0
- package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +185 -0
- package/dist/esm/apis/energy-cost-analysis-controller-api.js +280 -0
- package/dist/esm/models/energy-cost-add-record-dto.d.ts +2 -2
- package/dist/esm/models/index.d.ts +2 -0
- package/dist/esm/models/index.js +2 -0
- package/dist/esm/models/json-result-two-energy-consumption-summar-vo.d.ts +62 -0
- package/dist/esm/models/json-result-two-energy-consumption-summar-vo.js +14 -0
- package/dist/esm/models/two-energy-consumption-summar-vo.d.ts +30 -0
- package/dist/esm/models/two-energy-consumption-summar-vo.js +14 -0
- package/dist/models/energy-cost-add-record-dto.d.ts +2 -2
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/json-result-two-energy-consumption-summar-vo.d.ts +62 -0
- package/dist/models/json-result-two-energy-consumption-summar-vo.js +15 -0
- package/dist/models/two-energy-consumption-summar-vo.d.ts +30 -0
- package/dist/models/two-energy-consumption-summar-vo.js +15 -0
- package/models/energy-cost-add-record-dto.ts +2 -2
- package/models/index.ts +2 -0
- package/models/json-result-two-energy-consumption-summar-vo.ts +72 -0
- package/models/two-energy-consumption-summar-vo.ts +36 -0
- package/ossutil.log +1089 -1086
- package/package.json +1 -1
|
@@ -91,13 +91,13 @@ export interface EnergyCostAddRecordDTO {
|
|
|
91
91
|
* @type {number}
|
|
92
92
|
* @memberof EnergyCostAddRecordDTO
|
|
93
93
|
*/
|
|
94
|
-
'powerFactorSurcharge'
|
|
94
|
+
'powerFactorSurcharge'?: number;
|
|
95
95
|
/**
|
|
96
96
|
* 调前电费
|
|
97
97
|
* @type {number}
|
|
98
98
|
* @memberof EnergyCostAddRecordDTO
|
|
99
99
|
*/
|
|
100
|
-
'billAmountBefore'
|
|
100
|
+
'billAmountBefore'?: number;
|
|
101
101
|
/**
|
|
102
102
|
* 单价
|
|
103
103
|
* @type {number}
|
package/models/index.ts
CHANGED
|
@@ -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,72 @@
|
|
|
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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { TwoEnergyConsumptionSummarVO } from './two-energy-consumption-summar-vo';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultTwoEnergyConsumptionSummarVO
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultTwoEnergyConsumptionSummarVO {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {TwoEnergyConsumptionSummarVO}
|
|
50
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
51
|
+
*/
|
|
52
|
+
'data'?: TwoEnergyConsumptionSummarVO | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 能源成本用量趋势
|
|
19
|
+
* @export
|
|
20
|
+
* @interface TwoEnergyConsumptionSummarVO
|
|
21
|
+
*/
|
|
22
|
+
export interface TwoEnergyConsumptionSummarVO {
|
|
23
|
+
/**
|
|
24
|
+
* 用量
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof TwoEnergyConsumptionSummarVO
|
|
27
|
+
*/
|
|
28
|
+
'parkUtilityUsage'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* 费用
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof TwoEnergyConsumptionSummarVO
|
|
33
|
+
*/
|
|
34
|
+
'billCharges'?: number;
|
|
35
|
+
}
|
|
36
|
+
|