@gizone/rrs-client 4.2.9-alpha.546 → 4.2.9-alpha.547

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 (29) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/apis/energy-cost-record-controller-api.ts +4 -2
  3. package/dist/apis/energy-cost-record-controller-api.d.ts +4 -3
  4. package/dist/esm/apis/energy-cost-record-controller-api.d.ts +4 -3
  5. package/dist/esm/models/energy-cost-record-info-not-emun-vo.d.ts +205 -0
  6. package/dist/esm/models/energy-cost-record-info-not-emun-vo.js +14 -0
  7. package/dist/esm/models/energy-cost-scenarios-info-not-enum-vo.d.ts +120 -0
  8. package/dist/esm/models/energy-cost-scenarios-info-not-enum-vo.js +14 -0
  9. package/dist/esm/models/index.d.ts +3 -0
  10. package/dist/esm/models/index.js +3 -0
  11. package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
  12. package/dist/esm/models/json-result-energy-cost-record-info-not-emun-vo.d.ts +62 -0
  13. package/dist/esm/models/json-result-energy-cost-record-info-not-emun-vo.js +14 -0
  14. package/dist/models/energy-cost-record-info-not-emun-vo.d.ts +205 -0
  15. package/dist/models/energy-cost-record-info-not-emun-vo.js +15 -0
  16. package/dist/models/energy-cost-scenarios-info-not-enum-vo.d.ts +120 -0
  17. package/dist/models/energy-cost-scenarios-info-not-enum-vo.js +15 -0
  18. package/dist/models/index.d.ts +3 -0
  19. package/dist/models/index.js +3 -0
  20. package/dist/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
  21. package/dist/models/json-result-energy-cost-record-info-not-emun-vo.d.ts +62 -0
  22. package/dist/models/json-result-energy-cost-record-info-not-emun-vo.js +15 -0
  23. package/models/energy-cost-record-info-not-emun-vo.ts +213 -0
  24. package/models/energy-cost-scenarios-info-not-enum-vo.ts +126 -0
  25. package/models/index.ts +3 -0
  26. package/models/ipage-energy-cost-record-info-vo.ts +7 -7
  27. package/models/json-result-energy-cost-record-info-not-emun-vo.ts +72 -0
  28. package/ossutil.log +1068 -1068
  29. package/package.json +1 -1
@@ -0,0 +1,213 @@
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 { EnergyCostScenariosInfoNotEnumVO } from './energy-cost-scenarios-info-not-enum-vo';
19
+
20
+ /**
21
+ * 返回数据,可以是任意类型的值
22
+ * @export
23
+ * @interface EnergyCostRecordInfoNotEmunVO
24
+ */
25
+ export interface EnergyCostRecordInfoNotEmunVO {
26
+ /**
27
+ * 主键ID
28
+ * @type {number}
29
+ * @memberof EnergyCostRecordInfoNotEmunVO
30
+ */
31
+ 'id'?: number;
32
+ /**
33
+ * 园区id
34
+ * @type {number}
35
+ * @memberof EnergyCostRecordInfoNotEmunVO
36
+ */
37
+ 'parkId'?: number;
38
+ /**
39
+ * 能源类型
40
+ * @type {string}
41
+ * @memberof EnergyCostRecordInfoNotEmunVO
42
+ */
43
+ 'energyType'?: string;
44
+ /**
45
+ * 单价类型
46
+ * @type {string}
47
+ * @memberof EnergyCostRecordInfoNotEmunVO
48
+ */
49
+ 'pricingType'?: string;
50
+ /**
51
+ * 账单来源
52
+ * @type {string}
53
+ * @memberof EnergyCostRecordInfoNotEmunVO
54
+ */
55
+ 'billSource'?: string;
56
+ /**
57
+ * 账单开始日
58
+ * @type {string}
59
+ * @memberof EnergyCostRecordInfoNotEmunVO
60
+ */
61
+ 'billDateStart'?: string;
62
+ /**
63
+ * 账单结束日
64
+ * @type {string}
65
+ * @memberof EnergyCostRecordInfoNotEmunVO
66
+ */
67
+ 'billDateEnd'?: string;
68
+ /**
69
+ * 账单月
70
+ * @type {string}
71
+ * @memberof EnergyCostRecordInfoNotEmunVO
72
+ */
73
+ 'billMonth'?: string;
74
+ /**
75
+ * 关联账单id
76
+ * @type {number}
77
+ * @memberof EnergyCostRecordInfoNotEmunVO
78
+ */
79
+ 'billId'?: number;
80
+ /**
81
+ * 账单编号
82
+ * @type {string}
83
+ * @memberof EnergyCostRecordInfoNotEmunVO
84
+ */
85
+ 'billCode'?: string;
86
+ /**
87
+ * 处理人id
88
+ * @type {number}
89
+ * @memberof EnergyCostRecordInfoNotEmunVO
90
+ */
91
+ 'handlerId'?: number;
92
+ /**
93
+ * 处理人name
94
+ * @type {string}
95
+ * @memberof EnergyCostRecordInfoNotEmunVO
96
+ */
97
+ 'handlerName'?: string;
98
+ /**
99
+ * 园区用量
100
+ * @type {number}
101
+ * @memberof EnergyCostRecordInfoNotEmunVO
102
+ */
103
+ 'parkUtilityUsage'?: number;
104
+ /**
105
+ * 园区费用(电费/水费)
106
+ * @type {number}
107
+ * @memberof EnergyCostRecordInfoNotEmunVO
108
+ */
109
+ 'billCharges'?: number;
110
+ /**
111
+ * 力调电费
112
+ * @type {number}
113
+ * @memberof EnergyCostRecordInfoNotEmunVO
114
+ */
115
+ 'powerFactorSurcharge'?: number;
116
+ /**
117
+ * 调前电费
118
+ * @type {number}
119
+ * @memberof EnergyCostRecordInfoNotEmunVO
120
+ */
121
+ 'billAmountBefore'?: number;
122
+ /**
123
+ * 单价
124
+ * @type {number}
125
+ * @memberof EnergyCostRecordInfoNotEmunVO
126
+ */
127
+ 'unitPrice'?: number;
128
+ /**
129
+ * 单平单价
130
+ * @type {number}
131
+ * @memberof EnergyCostRecordInfoNotEmunVO
132
+ */
133
+ 'pricePerSquareMeter'?: number;
134
+ /**
135
+ * 单平单耗
136
+ * @type {number}
137
+ * @memberof EnergyCostRecordInfoNotEmunVO
138
+ */
139
+ 'costPerSquareMeter'?: number;
140
+ /**
141
+ * 标准值
142
+ * @type {number}
143
+ * @memberof EnergyCostRecordInfoNotEmunVO
144
+ */
145
+ 'standardValue'?: number;
146
+ /**
147
+ * 是否超标 0未超标 1 超标
148
+ * @type {number}
149
+ * @memberof EnergyCostRecordInfoNotEmunVO
150
+ */
151
+ 'isOverBudget'?: number;
152
+ /**
153
+ * 超标原因
154
+ * @type {string}
155
+ * @memberof EnergyCostRecordInfoNotEmunVO
156
+ */
157
+ 'overrunReason'?: string;
158
+ /**
159
+ * 备注
160
+ * @type {string}
161
+ * @memberof EnergyCostRecordInfoNotEmunVO
162
+ */
163
+ 'remark'?: string;
164
+ /**
165
+ * 备注
166
+ * @type {string}
167
+ * @memberof EnergyCostRecordInfoNotEmunVO
168
+ */
169
+ 'attachment'?: string;
170
+ /**
171
+ * 园区总面积
172
+ * @type {number}
173
+ * @memberof EnergyCostRecordInfoNotEmunVO
174
+ */
175
+ 'totalParkArea'?: number;
176
+ /**
177
+ * 总空仓面积
178
+ * @type {number}
179
+ * @memberof EnergyCostRecordInfoNotEmunVO
180
+ */
181
+ 'totalVacantArea'?: number;
182
+ /**
183
+ * 0 草稿 1已完成
184
+ * @type {number}
185
+ * @memberof EnergyCostRecordInfoNotEmunVO
186
+ */
187
+ 'status'?: number;
188
+ /**
189
+ * 创建时间
190
+ * @type {string}
191
+ * @memberof EnergyCostRecordInfoNotEmunVO
192
+ */
193
+ 'createTime'?: string;
194
+ /**
195
+ * 更新时间
196
+ * @type {string}
197
+ * @memberof EnergyCostRecordInfoNotEmunVO
198
+ */
199
+ 'updateTime'?: string;
200
+ /**
201
+ * 是否删除 1未删除 0删除
202
+ * @type {number}
203
+ * @memberof EnergyCostRecordInfoNotEmunVO
204
+ */
205
+ 'isDelete'?: number;
206
+ /**
207
+ *
208
+ * @type {Array<EnergyCostScenariosInfoNotEnumVO>}
209
+ * @memberof EnergyCostRecordInfoNotEmunVO
210
+ */
211
+ 'scenarios'?: Array<EnergyCostScenariosInfoNotEnumVO>;
212
+ }
213
+
@@ -0,0 +1,126 @@
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 EnergyCostScenariosInfoNotEnumVO
21
+ */
22
+ export interface EnergyCostScenariosInfoNotEnumVO {
23
+ /**
24
+ * 主键ID
25
+ * @type {number}
26
+ * @memberof EnergyCostScenariosInfoNotEnumVO
27
+ */
28
+ 'id'?: number;
29
+ /**
30
+ * 关联到 energy_cost_record 的Id
31
+ * @type {number}
32
+ * @memberof EnergyCostScenariosInfoNotEnumVO
33
+ */
34
+ 'energyCostRecordId'?: number;
35
+ /**
36
+ * 能源类型
37
+ * @type {string}
38
+ * @memberof EnergyCostScenariosInfoNotEnumVO
39
+ */
40
+ 'energyType'?: string;
41
+ /**
42
+ * 使用场景
43
+ * @type {string}
44
+ * @memberof EnergyCostScenariosInfoNotEnumVO
45
+ */
46
+ 'usageScenariosType'?: string;
47
+ /**
48
+ * 面积
49
+ * @type {number}
50
+ * @memberof EnergyCostScenariosInfoNotEnumVO
51
+ */
52
+ 'totalArea'?: number;
53
+ /**
54
+ * 用量
55
+ * @type {number}
56
+ * @memberof EnergyCostScenariosInfoNotEnumVO
57
+ */
58
+ 'consumption'?: number;
59
+ /**
60
+ * 费用
61
+ * @type {number}
62
+ * @memberof EnergyCostScenariosInfoNotEnumVO
63
+ */
64
+ 'cost'?: number;
65
+ /**
66
+ * 单平单价
67
+ * @type {number}
68
+ * @memberof EnergyCostScenariosInfoNotEnumVO
69
+ */
70
+ 'pricePerSquareMeter'?: number;
71
+ /**
72
+ * 单平单耗
73
+ * @type {number}
74
+ * @memberof EnergyCostScenariosInfoNotEnumVO
75
+ */
76
+ 'costPerSquareMeter'?: number;
77
+ /**
78
+ * 标准值
79
+ * @type {number}
80
+ * @memberof EnergyCostScenariosInfoNotEnumVO
81
+ */
82
+ 'standardValue'?: number;
83
+ /**
84
+ * 是否超标 0未超标 1 超标
85
+ * @type {number}
86
+ * @memberof EnergyCostScenariosInfoNotEnumVO
87
+ */
88
+ 'isOverBudget'?: number;
89
+ /**
90
+ * 超标原因
91
+ * @type {string}
92
+ * @memberof EnergyCostScenariosInfoNotEnumVO
93
+ */
94
+ 'overrunReason'?: string;
95
+ /**
96
+ * 备注
97
+ * @type {string}
98
+ * @memberof EnergyCostScenariosInfoNotEnumVO
99
+ */
100
+ 'remark'?: string;
101
+ /**
102
+ * 附件
103
+ * @type {string}
104
+ * @memberof EnergyCostScenariosInfoNotEnumVO
105
+ */
106
+ 'attachment'?: string;
107
+ /**
108
+ * 创建时间
109
+ * @type {string}
110
+ * @memberof EnergyCostScenariosInfoNotEnumVO
111
+ */
112
+ 'createTime'?: string;
113
+ /**
114
+ * 更新时间
115
+ * @type {string}
116
+ * @memberof EnergyCostScenariosInfoNotEnumVO
117
+ */
118
+ 'updateTime'?: string;
119
+ /**
120
+ * 是否删除 1未删除 0删除
121
+ * @type {number}
122
+ * @memberof EnergyCostScenariosInfoNotEnumVO
123
+ */
124
+ 'isDelete'?: number;
125
+ }
126
+
package/models/index.ts CHANGED
@@ -110,7 +110,9 @@ export * from './energy-cost-add-setting-dtopark-setting';
110
110
  export * from './energy-cost-add-setting-dtopark-setting-item';
111
111
  export * from './energy-cost-month-setting-list-summary-standards-vo';
112
112
  export * from './energy-cost-month-setting-list-vo';
113
+ export * from './energy-cost-record-info-not-emun-vo';
113
114
  export * from './energy-cost-record-info-vo';
115
+ export * from './energy-cost-scenarios-info-not-enum-vo';
114
116
  export * from './energy-cost-scenarios-info-vo';
115
117
  export * from './energy-cost-setting-delete-dto';
116
118
  export * from './energy-cost-setting-summy-add-dto';
@@ -195,6 +197,7 @@ export * from './json-result-boolean';
195
197
  export * from './json-result-calendar-entity';
196
198
  export * from './json-result-dashboard-park-statistics-vo';
197
199
  export * from './json-result-disaster-warning-standard-entity';
200
+ export * from './json-result-energy-cost-record-info-not-emun-vo';
198
201
  export * from './json-result-energy-cost-record-info-vo';
199
202
  export * from './json-result-equipment-add-redis-list-dto';
200
203
  export * from './json-result-equipment-detail-dto';
@@ -35,6 +35,13 @@ 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;
38
45
  /**
39
46
  *
40
47
  * @type {Array<EnergyCostRecordInfoVO>}
@@ -53,13 +60,6 @@ export interface IPageEnergyCostRecordInfoVO {
53
60
  * @memberof IPageEnergyCostRecordInfoVO
54
61
  */
55
62
  'pages'?: number;
56
- /**
57
- *
58
- * @type {boolean}
59
- * @memberof IPageEnergyCostRecordInfoVO
60
- * @deprecated
61
- */
62
- 'hitCount'?: boolean;
63
63
  /**
64
64
  *
65
65
  * @type {number}
@@ -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 { EnergyCostRecordInfoNotEmunVO } from './energy-cost-record-info-not-emun-vo';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface JsonResultEnergyCostRecordInfoNotEmunVO
27
+ */
28
+ export interface JsonResultEnergyCostRecordInfoNotEmunVO {
29
+ /**
30
+ * 错误码,0:成功,其他:失败
31
+ * @type {number}
32
+ * @memberof JsonResultEnergyCostRecordInfoNotEmunVO
33
+ */
34
+ 'code'?: number;
35
+ /**
36
+ * 错误消息
37
+ * @type {string}
38
+ * @memberof JsonResultEnergyCostRecordInfoNotEmunVO
39
+ */
40
+ 'msg'?: string;
41
+ /**
42
+ * 错误堆栈
43
+ * @type {string}
44
+ * @memberof JsonResultEnergyCostRecordInfoNotEmunVO
45
+ */
46
+ 'stacks'?: string;
47
+ /**
48
+ *
49
+ * @type {EnergyCostRecordInfoNotEmunVO}
50
+ * @memberof JsonResultEnergyCostRecordInfoNotEmunVO
51
+ */
52
+ 'data'?: EnergyCostRecordInfoNotEmunVO | null;
53
+ /**
54
+ *
55
+ * @type {BaseErrorResult}
56
+ * @memberof JsonResultEnergyCostRecordInfoNotEmunVO
57
+ */
58
+ 'error'?: BaseErrorResult | null;
59
+ /**
60
+ * 日志追踪ID
61
+ * @type {string}
62
+ * @memberof JsonResultEnergyCostRecordInfoNotEmunVO
63
+ */
64
+ 'traceId'?: string | null;
65
+ /**
66
+ * requestId
67
+ * @type {string}
68
+ * @memberof JsonResultEnergyCostRecordInfoNotEmunVO
69
+ */
70
+ 'requestId'?: string | null;
71
+ }
72
+