@gizone/rrs-client 4.2.9-alpha.548 → 4.2.9-alpha.549

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 (28) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/apis/energy-cost-record-controller-api.ts +224 -14
  3. package/dist/apis/energy-cost-record-controller-api.d.ts +117 -7
  4. package/dist/apis/energy-cost-record-controller-api.js +164 -13
  5. package/dist/esm/apis/energy-cost-record-controller-api.d.ts +117 -7
  6. package/dist/esm/apis/energy-cost-record-controller-api.js +164 -13
  7. package/dist/esm/models/energy-cost-edit-record-dto.d.ts +173 -0
  8. package/dist/esm/models/energy-cost-edit-record-dto.js +36 -0
  9. package/dist/esm/models/energy-cost-record-bill-info-vo.d.ts +48 -0
  10. package/dist/esm/models/energy-cost-record-bill-info-vo.js +14 -0
  11. package/dist/esm/models/index.d.ts +3 -0
  12. package/dist/esm/models/index.js +3 -0
  13. package/dist/esm/models/json-result-energy-cost-record-bill-info-vo.d.ts +62 -0
  14. package/dist/esm/models/json-result-energy-cost-record-bill-info-vo.js +14 -0
  15. package/dist/models/energy-cost-edit-record-dto.d.ts +173 -0
  16. package/dist/models/energy-cost-edit-record-dto.js +39 -0
  17. package/dist/models/energy-cost-record-bill-info-vo.d.ts +48 -0
  18. package/dist/models/energy-cost-record-bill-info-vo.js +15 -0
  19. package/dist/models/index.d.ts +3 -0
  20. package/dist/models/index.js +3 -0
  21. package/dist/models/json-result-energy-cost-record-bill-info-vo.d.ts +62 -0
  22. package/dist/models/json-result-energy-cost-record-bill-info-vo.js +15 -0
  23. package/models/energy-cost-edit-record-dto.ts +189 -0
  24. package/models/energy-cost-record-bill-info-vo.ts +54 -0
  25. package/models/index.ts +3 -0
  26. package/models/json-result-energy-cost-record-bill-info-vo.ts +72 -0
  27. package/ossutil.log +1074 -1071
  28. package/package.json +1 -1
@@ -0,0 +1,173 @@
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 { Item } from './item';
13
+ import type { PricingItem } from './pricing-item';
14
+ /**
15
+ * 编辑能源消耗记录-入参
16
+ * @export
17
+ * @interface EnergyCostEditRecordDTO
18
+ */
19
+ export interface EnergyCostEditRecordDTO {
20
+ /**
21
+ * 记录ID
22
+ * @type {number}
23
+ * @memberof EnergyCostEditRecordDTO
24
+ */
25
+ 'id': number;
26
+ /**
27
+ * 园区id
28
+ * @type {number}
29
+ * @memberof EnergyCostEditRecordDTO
30
+ */
31
+ 'parkId': number;
32
+ /**
33
+ * 账单id
34
+ * @type {number}
35
+ * @memberof EnergyCostEditRecordDTO
36
+ */
37
+ 'billId': number;
38
+ /**
39
+ * 能源类型
40
+ * @type {string}
41
+ * @memberof EnergyCostEditRecordDTO
42
+ */
43
+ 'energyType': EnergyCostEditRecordDTOEnergyTypeEnum;
44
+ /**
45
+ * 账单开始日
46
+ * @type {string}
47
+ * @memberof EnergyCostEditRecordDTO
48
+ */
49
+ 'billDateStart': string;
50
+ /**
51
+ * 账单结束日
52
+ * @type {string}
53
+ * @memberof EnergyCostEditRecordDTO
54
+ */
55
+ 'billDateEnd': string;
56
+ /**
57
+ * 账单月
58
+ * @type {string}
59
+ * @memberof EnergyCostEditRecordDTO
60
+ */
61
+ 'billMonth': string;
62
+ /**
63
+ * 账单来源
64
+ * @type {string}
65
+ * @memberof EnergyCostEditRecordDTO
66
+ */
67
+ 'billSource': EnergyCostEditRecordDTOBillSourceEnum;
68
+ /**
69
+ * 单价类型
70
+ * @type {string}
71
+ * @memberof EnergyCostEditRecordDTO
72
+ */
73
+ 'pricingType': EnergyCostEditRecordDTOPricingTypeEnum;
74
+ /**
75
+ * 园区用量
76
+ * @type {number}
77
+ * @memberof EnergyCostEditRecordDTO
78
+ */
79
+ 'parkUtilityUsage': number;
80
+ /**
81
+ * 园区费用(电费/水费)
82
+ * @type {number}
83
+ * @memberof EnergyCostEditRecordDTO
84
+ */
85
+ 'billCharges': number;
86
+ /**
87
+ * 力调电费
88
+ * @type {number}
89
+ * @memberof EnergyCostEditRecordDTO
90
+ */
91
+ 'powerFactorSurcharge': number;
92
+ /**
93
+ * 调前电费
94
+ * @type {number}
95
+ * @memberof EnergyCostEditRecordDTO
96
+ */
97
+ 'billAmountBefore': number;
98
+ /**
99
+ * 单价
100
+ * @type {number}
101
+ * @memberof EnergyCostEditRecordDTO
102
+ */
103
+ 'unitPrice': number;
104
+ /**
105
+ * 园区总面积
106
+ * @type {number}
107
+ * @memberof EnergyCostEditRecordDTO
108
+ */
109
+ 'totalParkArea': number;
110
+ /**
111
+ * 总空仓面积
112
+ * @type {number}
113
+ * @memberof EnergyCostEditRecordDTO
114
+ */
115
+ 'totalVacantArea': number;
116
+ /**
117
+ * 超标原因
118
+ * @type {string}
119
+ * @memberof EnergyCostEditRecordDTO
120
+ */
121
+ 'overrunReason'?: EnergyCostEditRecordDTOOverrunReasonEnum;
122
+ /**
123
+ * 备注
124
+ * @type {string}
125
+ * @memberof EnergyCostEditRecordDTO
126
+ */
127
+ 'remark'?: string;
128
+ /**
129
+ * 附件
130
+ * @type {string}
131
+ * @memberof EnergyCostEditRecordDTO
132
+ */
133
+ 'attachment'?: string;
134
+ /**
135
+ *
136
+ * @type {Array<Item>}
137
+ * @memberof EnergyCostEditRecordDTO
138
+ */
139
+ 'scenarios'?: Array<Item>;
140
+ /**
141
+ *
142
+ * @type {Array<PricingItem>}
143
+ * @memberof EnergyCostEditRecordDTO
144
+ */
145
+ 'pricingItem'?: Array<PricingItem>;
146
+ }
147
+ export declare const EnergyCostEditRecordDTOEnergyTypeEnum: {
148
+ readonly Electric: "ELECTRIC";
149
+ readonly Water: "WATER";
150
+ };
151
+ export type EnergyCostEditRecordDTOEnergyTypeEnum = typeof EnergyCostEditRecordDTOEnergyTypeEnum[keyof typeof EnergyCostEditRecordDTOEnergyTypeEnum];
152
+ export declare const EnergyCostEditRecordDTOBillSourceEnum: {
153
+ readonly StateGrid: "STATE_GRID";
154
+ readonly Photovoltaic: "PHOTOVOLTAIC";
155
+ readonly GroupEnergyRealEstate: "GROUP_ENERGY_REAL_ESTATE";
156
+ readonly WaterSupplyCompany: "WATER_SUPPLY_COMPANY";
157
+ };
158
+ export type EnergyCostEditRecordDTOBillSourceEnum = typeof EnergyCostEditRecordDTOBillSourceEnum[keyof typeof EnergyCostEditRecordDTOBillSourceEnum];
159
+ export declare const EnergyCostEditRecordDTOPricingTypeEnum: {
160
+ readonly UniformUnitPrice: "UNIFORM_UNIT_PRICE";
161
+ readonly PeakValleyFlat: "PEAK_VALLEY_FLAT";
162
+ };
163
+ export type EnergyCostEditRecordDTOPricingTypeEnum = typeof EnergyCostEditRecordDTOPricingTypeEnum[keyof typeof EnergyCostEditRecordDTOPricingTypeEnum];
164
+ export declare const EnergyCostEditRecordDTOOverrunReasonEnum: {
165
+ readonly BusinessVolumeOperationTimeIncrease: "BUSINESS_VOLUME_OPERATION_TIME_INCREASE";
166
+ readonly BusinessVolumeChargingDeviceIncrease: "BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE";
167
+ readonly BusinessVolumeAreaIncrease: "BUSINESS_VOLUME_AREA_INCREASE";
168
+ readonly SocialCustomerEnergyConsumptionIncrease: "SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE";
169
+ readonly EnergyConsumingEquipmentIncrease: "ENERGY_CONSUMING_EQUIPMENT_INCREASE";
170
+ readonly AbnormalWeather: "ABNORMAL_WEATHER";
171
+ readonly Other: "OTHER";
172
+ };
173
+ export type EnergyCostEditRecordDTOOverrunReasonEnum = typeof EnergyCostEditRecordDTOOverrunReasonEnum[keyof typeof EnergyCostEditRecordDTOOverrunReasonEnum];
@@ -0,0 +1,39 @@
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 });
16
+ exports.EnergyCostEditRecordDTOOverrunReasonEnum = exports.EnergyCostEditRecordDTOPricingTypeEnum = exports.EnergyCostEditRecordDTOBillSourceEnum = exports.EnergyCostEditRecordDTOEnergyTypeEnum = void 0;
17
+ exports.EnergyCostEditRecordDTOEnergyTypeEnum = {
18
+ Electric: 'ELECTRIC',
19
+ Water: 'WATER'
20
+ };
21
+ exports.EnergyCostEditRecordDTOBillSourceEnum = {
22
+ StateGrid: 'STATE_GRID',
23
+ Photovoltaic: 'PHOTOVOLTAIC',
24
+ GroupEnergyRealEstate: 'GROUP_ENERGY_REAL_ESTATE',
25
+ WaterSupplyCompany: 'WATER_SUPPLY_COMPANY'
26
+ };
27
+ exports.EnergyCostEditRecordDTOPricingTypeEnum = {
28
+ UniformUnitPrice: 'UNIFORM_UNIT_PRICE',
29
+ PeakValleyFlat: 'PEAK_VALLEY_FLAT'
30
+ };
31
+ exports.EnergyCostEditRecordDTOOverrunReasonEnum = {
32
+ BusinessVolumeOperationTimeIncrease: 'BUSINESS_VOLUME_OPERATION_TIME_INCREASE',
33
+ BusinessVolumeChargingDeviceIncrease: 'BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE',
34
+ BusinessVolumeAreaIncrease: 'BUSINESS_VOLUME_AREA_INCREASE',
35
+ SocialCustomerEnergyConsumptionIncrease: 'SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE',
36
+ EnergyConsumingEquipmentIncrease: 'ENERGY_CONSUMING_EQUIPMENT_INCREASE',
37
+ AbnormalWeather: 'ABNORMAL_WEATHER',
38
+ Other: 'OTHER'
39
+ };
@@ -0,0 +1,48 @@
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 EnergyCostRecordBillInfoVO
16
+ */
17
+ export interface EnergyCostRecordBillInfoVO {
18
+ /**
19
+ * 主键ID
20
+ * @type {number}
21
+ * @memberof EnergyCostRecordBillInfoVO
22
+ */
23
+ 'id'?: number;
24
+ /**
25
+ * 园区id
26
+ * @type {number}
27
+ * @memberof EnergyCostRecordBillInfoVO
28
+ */
29
+ 'parkId'?: number;
30
+ /**
31
+ * 账单开始日
32
+ * @type {string}
33
+ * @memberof EnergyCostRecordBillInfoVO
34
+ */
35
+ 'billDateStart'?: string;
36
+ /**
37
+ * 账单结束日
38
+ * @type {string}
39
+ * @memberof EnergyCostRecordBillInfoVO
40
+ */
41
+ 'billDateEnd'?: string;
42
+ /**
43
+ * 园区费用(电费/水费)
44
+ * @type {number}
45
+ * @memberof EnergyCostRecordBillInfoVO
46
+ */
47
+ 'billCharges'?: number;
48
+ }
@@ -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 });
@@ -108,8 +108,10 @@ export * from './energy-cost-add-record-dto';
108
108
  export * from './energy-cost-add-setting-dto';
109
109
  export * from './energy-cost-add-setting-dtopark-setting';
110
110
  export * from './energy-cost-add-setting-dtopark-setting-item';
111
+ export * from './energy-cost-edit-record-dto';
111
112
  export * from './energy-cost-month-setting-list-summary-standards-vo';
112
113
  export * from './energy-cost-month-setting-list-vo';
114
+ export * from './energy-cost-record-bill-info-vo';
113
115
  export * from './energy-cost-record-info-not-emun-vo';
114
116
  export * from './energy-cost-record-info-vo';
115
117
  export * from './energy-cost-scenarios-info-not-enum-vo';
@@ -197,6 +199,7 @@ export * from './json-result-boolean';
197
199
  export * from './json-result-calendar-entity';
198
200
  export * from './json-result-dashboard-park-statistics-vo';
199
201
  export * from './json-result-disaster-warning-standard-entity';
202
+ export * from './json-result-energy-cost-record-bill-info-vo';
200
203
  export * from './json-result-energy-cost-record-info-not-emun-vo';
201
204
  export * from './json-result-energy-cost-record-info-vo';
202
205
  export * from './json-result-equipment-add-redis-list-dto';
@@ -124,8 +124,10 @@ __exportStar(require("./energy-cost-add-record-dto"), exports);
124
124
  __exportStar(require("./energy-cost-add-setting-dto"), exports);
125
125
  __exportStar(require("./energy-cost-add-setting-dtopark-setting"), exports);
126
126
  __exportStar(require("./energy-cost-add-setting-dtopark-setting-item"), exports);
127
+ __exportStar(require("./energy-cost-edit-record-dto"), exports);
127
128
  __exportStar(require("./energy-cost-month-setting-list-summary-standards-vo"), exports);
128
129
  __exportStar(require("./energy-cost-month-setting-list-vo"), exports);
130
+ __exportStar(require("./energy-cost-record-bill-info-vo"), exports);
129
131
  __exportStar(require("./energy-cost-record-info-not-emun-vo"), exports);
130
132
  __exportStar(require("./energy-cost-record-info-vo"), exports);
131
133
  __exportStar(require("./energy-cost-scenarios-info-not-enum-vo"), exports);
@@ -213,6 +215,7 @@ __exportStar(require("./json-result-boolean"), exports);
213
215
  __exportStar(require("./json-result-calendar-entity"), exports);
214
216
  __exportStar(require("./json-result-dashboard-park-statistics-vo"), exports);
215
217
  __exportStar(require("./json-result-disaster-warning-standard-entity"), exports);
218
+ __exportStar(require("./json-result-energy-cost-record-bill-info-vo"), exports);
216
219
  __exportStar(require("./json-result-energy-cost-record-info-not-emun-vo"), exports);
217
220
  __exportStar(require("./json-result-energy-cost-record-info-vo"), exports);
218
221
  __exportStar(require("./json-result-equipment-add-redis-list-dto"), 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 { EnergyCostRecordBillInfoVO } from './energy-cost-record-bill-info-vo';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultEnergyCostRecordBillInfoVO
18
+ */
19
+ export interface JsonResultEnergyCostRecordBillInfoVO {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ *
40
+ * @type {EnergyCostRecordBillInfoVO}
41
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
42
+ */
43
+ 'data'?: EnergyCostRecordBillInfoVO | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
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,189 @@
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 { Item } from './item';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { PricingItem } from './pricing-item';
22
+
23
+ /**
24
+ * 编辑能源消耗记录-入参
25
+ * @export
26
+ * @interface EnergyCostEditRecordDTO
27
+ */
28
+ export interface EnergyCostEditRecordDTO {
29
+ /**
30
+ * 记录ID
31
+ * @type {number}
32
+ * @memberof EnergyCostEditRecordDTO
33
+ */
34
+ 'id': number;
35
+ /**
36
+ * 园区id
37
+ * @type {number}
38
+ * @memberof EnergyCostEditRecordDTO
39
+ */
40
+ 'parkId': number;
41
+ /**
42
+ * 账单id
43
+ * @type {number}
44
+ * @memberof EnergyCostEditRecordDTO
45
+ */
46
+ 'billId': number;
47
+ /**
48
+ * 能源类型
49
+ * @type {string}
50
+ * @memberof EnergyCostEditRecordDTO
51
+ */
52
+ 'energyType': EnergyCostEditRecordDTOEnergyTypeEnum;
53
+ /**
54
+ * 账单开始日
55
+ * @type {string}
56
+ * @memberof EnergyCostEditRecordDTO
57
+ */
58
+ 'billDateStart': string;
59
+ /**
60
+ * 账单结束日
61
+ * @type {string}
62
+ * @memberof EnergyCostEditRecordDTO
63
+ */
64
+ 'billDateEnd': string;
65
+ /**
66
+ * 账单月
67
+ * @type {string}
68
+ * @memberof EnergyCostEditRecordDTO
69
+ */
70
+ 'billMonth': string;
71
+ /**
72
+ * 账单来源
73
+ * @type {string}
74
+ * @memberof EnergyCostEditRecordDTO
75
+ */
76
+ 'billSource': EnergyCostEditRecordDTOBillSourceEnum;
77
+ /**
78
+ * 单价类型
79
+ * @type {string}
80
+ * @memberof EnergyCostEditRecordDTO
81
+ */
82
+ 'pricingType': EnergyCostEditRecordDTOPricingTypeEnum;
83
+ /**
84
+ * 园区用量
85
+ * @type {number}
86
+ * @memberof EnergyCostEditRecordDTO
87
+ */
88
+ 'parkUtilityUsage': number;
89
+ /**
90
+ * 园区费用(电费/水费)
91
+ * @type {number}
92
+ * @memberof EnergyCostEditRecordDTO
93
+ */
94
+ 'billCharges': number;
95
+ /**
96
+ * 力调电费
97
+ * @type {number}
98
+ * @memberof EnergyCostEditRecordDTO
99
+ */
100
+ 'powerFactorSurcharge': number;
101
+ /**
102
+ * 调前电费
103
+ * @type {number}
104
+ * @memberof EnergyCostEditRecordDTO
105
+ */
106
+ 'billAmountBefore': number;
107
+ /**
108
+ * 单价
109
+ * @type {number}
110
+ * @memberof EnergyCostEditRecordDTO
111
+ */
112
+ 'unitPrice': number;
113
+ /**
114
+ * 园区总面积
115
+ * @type {number}
116
+ * @memberof EnergyCostEditRecordDTO
117
+ */
118
+ 'totalParkArea': number;
119
+ /**
120
+ * 总空仓面积
121
+ * @type {number}
122
+ * @memberof EnergyCostEditRecordDTO
123
+ */
124
+ 'totalVacantArea': number;
125
+ /**
126
+ * 超标原因
127
+ * @type {string}
128
+ * @memberof EnergyCostEditRecordDTO
129
+ */
130
+ 'overrunReason'?: EnergyCostEditRecordDTOOverrunReasonEnum;
131
+ /**
132
+ * 备注
133
+ * @type {string}
134
+ * @memberof EnergyCostEditRecordDTO
135
+ */
136
+ 'remark'?: string;
137
+ /**
138
+ * 附件
139
+ * @type {string}
140
+ * @memberof EnergyCostEditRecordDTO
141
+ */
142
+ 'attachment'?: string;
143
+ /**
144
+ *
145
+ * @type {Array<Item>}
146
+ * @memberof EnergyCostEditRecordDTO
147
+ */
148
+ 'scenarios'?: Array<Item>;
149
+ /**
150
+ *
151
+ * @type {Array<PricingItem>}
152
+ * @memberof EnergyCostEditRecordDTO
153
+ */
154
+ 'pricingItem'?: Array<PricingItem>;
155
+ }
156
+
157
+ export const EnergyCostEditRecordDTOEnergyTypeEnum = {
158
+ Electric: 'ELECTRIC',
159
+ Water: 'WATER'
160
+ } as const;
161
+
162
+ export type EnergyCostEditRecordDTOEnergyTypeEnum = typeof EnergyCostEditRecordDTOEnergyTypeEnum[keyof typeof EnergyCostEditRecordDTOEnergyTypeEnum];
163
+ export const EnergyCostEditRecordDTOBillSourceEnum = {
164
+ StateGrid: 'STATE_GRID',
165
+ Photovoltaic: 'PHOTOVOLTAIC',
166
+ GroupEnergyRealEstate: 'GROUP_ENERGY_REAL_ESTATE',
167
+ WaterSupplyCompany: 'WATER_SUPPLY_COMPANY'
168
+ } as const;
169
+
170
+ export type EnergyCostEditRecordDTOBillSourceEnum = typeof EnergyCostEditRecordDTOBillSourceEnum[keyof typeof EnergyCostEditRecordDTOBillSourceEnum];
171
+ export const EnergyCostEditRecordDTOPricingTypeEnum = {
172
+ UniformUnitPrice: 'UNIFORM_UNIT_PRICE',
173
+ PeakValleyFlat: 'PEAK_VALLEY_FLAT'
174
+ } as const;
175
+
176
+ export type EnergyCostEditRecordDTOPricingTypeEnum = typeof EnergyCostEditRecordDTOPricingTypeEnum[keyof typeof EnergyCostEditRecordDTOPricingTypeEnum];
177
+ export const EnergyCostEditRecordDTOOverrunReasonEnum = {
178
+ BusinessVolumeOperationTimeIncrease: 'BUSINESS_VOLUME_OPERATION_TIME_INCREASE',
179
+ BusinessVolumeChargingDeviceIncrease: 'BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE',
180
+ BusinessVolumeAreaIncrease: 'BUSINESS_VOLUME_AREA_INCREASE',
181
+ SocialCustomerEnergyConsumptionIncrease: 'SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE',
182
+ EnergyConsumingEquipmentIncrease: 'ENERGY_CONSUMING_EQUIPMENT_INCREASE',
183
+ AbnormalWeather: 'ABNORMAL_WEATHER',
184
+ Other: 'OTHER'
185
+ } as const;
186
+
187
+ export type EnergyCostEditRecordDTOOverrunReasonEnum = typeof EnergyCostEditRecordDTOOverrunReasonEnum[keyof typeof EnergyCostEditRecordDTOOverrunReasonEnum];
188
+
189
+
@@ -0,0 +1,54 @@
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 EnergyCostRecordBillInfoVO
21
+ */
22
+ export interface EnergyCostRecordBillInfoVO {
23
+ /**
24
+ * 主键ID
25
+ * @type {number}
26
+ * @memberof EnergyCostRecordBillInfoVO
27
+ */
28
+ 'id'?: number;
29
+ /**
30
+ * 园区id
31
+ * @type {number}
32
+ * @memberof EnergyCostRecordBillInfoVO
33
+ */
34
+ 'parkId'?: number;
35
+ /**
36
+ * 账单开始日
37
+ * @type {string}
38
+ * @memberof EnergyCostRecordBillInfoVO
39
+ */
40
+ 'billDateStart'?: string;
41
+ /**
42
+ * 账单结束日
43
+ * @type {string}
44
+ * @memberof EnergyCostRecordBillInfoVO
45
+ */
46
+ 'billDateEnd'?: string;
47
+ /**
48
+ * 园区费用(电费/水费)
49
+ * @type {number}
50
+ * @memberof EnergyCostRecordBillInfoVO
51
+ */
52
+ 'billCharges'?: number;
53
+ }
54
+
package/models/index.ts CHANGED
@@ -108,8 +108,10 @@ export * from './energy-cost-add-record-dto';
108
108
  export * from './energy-cost-add-setting-dto';
109
109
  export * from './energy-cost-add-setting-dtopark-setting';
110
110
  export * from './energy-cost-add-setting-dtopark-setting-item';
111
+ export * from './energy-cost-edit-record-dto';
111
112
  export * from './energy-cost-month-setting-list-summary-standards-vo';
112
113
  export * from './energy-cost-month-setting-list-vo';
114
+ export * from './energy-cost-record-bill-info-vo';
113
115
  export * from './energy-cost-record-info-not-emun-vo';
114
116
  export * from './energy-cost-record-info-vo';
115
117
  export * from './energy-cost-scenarios-info-not-enum-vo';
@@ -197,6 +199,7 @@ export * from './json-result-boolean';
197
199
  export * from './json-result-calendar-entity';
198
200
  export * from './json-result-dashboard-park-statistics-vo';
199
201
  export * from './json-result-disaster-warning-standard-entity';
202
+ export * from './json-result-energy-cost-record-bill-info-vo';
200
203
  export * from './json-result-energy-cost-record-info-not-emun-vo';
201
204
  export * from './json-result-energy-cost-record-info-vo';
202
205
  export * from './json-result-equipment-add-redis-list-dto';