@gizone/rrs-client 4.2.9-alpha.547 → 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 (40) 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/energy-cost-scenarios-info-not-enum-vo.d.ts +2 -2
  12. package/dist/esm/models/energy-cost-scenarios-info-vo.d.ts +2 -2
  13. package/dist/esm/models/index.d.ts +3 -0
  14. package/dist/esm/models/index.js +3 -0
  15. package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
  16. package/dist/esm/models/item.d.ts +2 -2
  17. package/dist/esm/models/json-result-energy-cost-record-bill-info-vo.d.ts +62 -0
  18. package/dist/esm/models/json-result-energy-cost-record-bill-info-vo.js +14 -0
  19. package/dist/models/energy-cost-edit-record-dto.d.ts +173 -0
  20. package/dist/models/energy-cost-edit-record-dto.js +39 -0
  21. package/dist/models/energy-cost-record-bill-info-vo.d.ts +48 -0
  22. package/dist/models/energy-cost-record-bill-info-vo.js +15 -0
  23. package/dist/models/energy-cost-scenarios-info-not-enum-vo.d.ts +2 -2
  24. package/dist/models/energy-cost-scenarios-info-vo.d.ts +2 -2
  25. package/dist/models/index.d.ts +3 -0
  26. package/dist/models/index.js +3 -0
  27. package/dist/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
  28. package/dist/models/item.d.ts +2 -2
  29. package/dist/models/json-result-energy-cost-record-bill-info-vo.d.ts +62 -0
  30. package/dist/models/json-result-energy-cost-record-bill-info-vo.js +15 -0
  31. package/models/energy-cost-edit-record-dto.ts +189 -0
  32. package/models/energy-cost-record-bill-info-vo.ts +54 -0
  33. package/models/energy-cost-scenarios-info-not-enum-vo.ts +2 -2
  34. package/models/energy-cost-scenarios-info-vo.ts +2 -2
  35. package/models/index.ts +3 -0
  36. package/models/ipage-energy-cost-record-info-vo.ts +7 -7
  37. package/models/item.ts +2 -2
  38. package/models/json-result-energy-cost-record-bill-info-vo.ts +72 -0
  39. package/ossutil.log +1074 -1068
  40. package/package.json +1 -1
@@ -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,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,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 });
@@ -95,10 +95,10 @@ export interface EnergyCostScenariosInfoNotEnumVO {
95
95
  'remark'?: string;
96
96
  /**
97
97
  * 附件
98
- * @type {string}
98
+ * @type {Array<string>}
99
99
  * @memberof EnergyCostScenariosInfoNotEnumVO
100
100
  */
101
- 'attachment'?: string;
101
+ 'attachment'?: Array<string>;
102
102
  /**
103
103
  * 创建时间
104
104
  * @type {string}
@@ -95,10 +95,10 @@ export interface EnergyCostScenariosInfoVO {
95
95
  'remark'?: string;
96
96
  /**
97
97
  * 附件
98
- * @type {string}
98
+ * @type {Array<string>}
99
99
  * @memberof EnergyCostScenariosInfoVO
100
100
  */
101
- 'attachment'?: string;
101
+ 'attachment'?: Array<string>;
102
102
  /**
103
103
  * 创建时间
104
104
  * @type {string}
@@ -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);
@@ -28,13 +28,6 @@ export interface IPageEnergyCostRecordInfoVO {
28
28
  * @memberof IPageEnergyCostRecordInfoVO
29
29
  */
30
30
  'current'?: number;
31
- /**
32
- *
33
- * @type {boolean}
34
- * @memberof IPageEnergyCostRecordInfoVO
35
- * @deprecated
36
- */
37
- 'hitCount'?: boolean;
38
31
  /**
39
32
  *
40
33
  * @type {Array<EnergyCostRecordInfoVO>}
@@ -53,6 +46,13 @@ export interface IPageEnergyCostRecordInfoVO {
53
46
  * @memberof IPageEnergyCostRecordInfoVO
54
47
  */
55
48
  'pages'?: number;
49
+ /**
50
+ *
51
+ * @type {boolean}
52
+ * @memberof IPageEnergyCostRecordInfoVO
53
+ * @deprecated
54
+ */
55
+ 'hitCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -53,10 +53,10 @@ export interface Item {
53
53
  'remark'?: string;
54
54
  /**
55
55
  * 附件
56
- * @type {string}
56
+ * @type {Array<string>}
57
57
  * @memberof Item
58
58
  */
59
- 'attachment'?: string;
59
+ 'attachment'?: Array<string>;
60
60
  }
61
61
  export declare const ItemScenarioEnum: {
62
62
  readonly ColdStorage: "COLD_STORAGE";
@@ -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 });