@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,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
+
@@ -100,10 +100,10 @@ export interface EnergyCostScenariosInfoNotEnumVO {
100
100
  'remark'?: string;
101
101
  /**
102
102
  * 附件
103
- * @type {string}
103
+ * @type {Array<string>}
104
104
  * @memberof EnergyCostScenariosInfoNotEnumVO
105
105
  */
106
- 'attachment'?: string;
106
+ 'attachment'?: Array<string>;
107
107
  /**
108
108
  * 创建时间
109
109
  * @type {string}
@@ -100,10 +100,10 @@ export interface EnergyCostScenariosInfoVO {
100
100
  'remark'?: string;
101
101
  /**
102
102
  * 附件
103
- * @type {string}
103
+ * @type {Array<string>}
104
104
  * @memberof EnergyCostScenariosInfoVO
105
105
  */
106
- 'attachment'?: string;
106
+ 'attachment'?: Array<string>;
107
107
  /**
108
108
  * 创建时间
109
109
  * @type {string}
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';
@@ -35,13 +35,6 @@ export interface IPageEnergyCostRecordInfoVO {
35
35
  * @memberof IPageEnergyCostRecordInfoVO
36
36
  */
37
37
  'current'?: number;
38
- /**
39
- *
40
- * @type {boolean}
41
- * @memberof IPageEnergyCostRecordInfoVO
42
- * @deprecated
43
- */
44
- 'hitCount'?: boolean;
45
38
  /**
46
39
  *
47
40
  * @type {Array<EnergyCostRecordInfoVO>}
@@ -60,6 +53,13 @@ export interface IPageEnergyCostRecordInfoVO {
60
53
  * @memberof IPageEnergyCostRecordInfoVO
61
54
  */
62
55
  'pages'?: number;
56
+ /**
57
+ *
58
+ * @type {boolean}
59
+ * @memberof IPageEnergyCostRecordInfoVO
60
+ * @deprecated
61
+ */
62
+ 'hitCount'?: boolean;
63
63
  /**
64
64
  *
65
65
  * @type {number}
package/models/item.ts CHANGED
@@ -58,10 +58,10 @@ export interface Item {
58
58
  'remark'?: string;
59
59
  /**
60
60
  * 附件
61
- * @type {string}
61
+ * @type {Array<string>}
62
62
  * @memberof Item
63
63
  */
64
- 'attachment'?: string;
64
+ 'attachment'?: Array<string>;
65
65
  }
66
66
 
67
67
  export const ItemScenarioEnum = {
@@ -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 { EnergyCostRecordBillInfoVO } from './energy-cost-record-bill-info-vo';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface JsonResultEnergyCostRecordBillInfoVO
27
+ */
28
+ export interface JsonResultEnergyCostRecordBillInfoVO {
29
+ /**
30
+ * 错误码,0:成功,其他:失败
31
+ * @type {number}
32
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
33
+ */
34
+ 'code'?: number;
35
+ /**
36
+ * 错误消息
37
+ * @type {string}
38
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
39
+ */
40
+ 'msg'?: string;
41
+ /**
42
+ * 错误堆栈
43
+ * @type {string}
44
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
45
+ */
46
+ 'stacks'?: string;
47
+ /**
48
+ *
49
+ * @type {EnergyCostRecordBillInfoVO}
50
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
51
+ */
52
+ 'data'?: EnergyCostRecordBillInfoVO | null;
53
+ /**
54
+ *
55
+ * @type {BaseErrorResult}
56
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
57
+ */
58
+ 'error'?: BaseErrorResult | null;
59
+ /**
60
+ * 日志追踪ID
61
+ * @type {string}
62
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
63
+ */
64
+ 'traceId'?: string | null;
65
+ /**
66
+ * requestId
67
+ * @type {string}
68
+ * @memberof JsonResultEnergyCostRecordBillInfoVO
69
+ */
70
+ 'requestId'?: string | null;
71
+ }
72
+