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