@gizone/rrs-client 4.2.9-alpha.561 → 4.2.9-alpha.564
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 +2 -0
- package/apis/energy-cost-analysis-controller-api.ts +91 -0
- package/apis/energy-cost-controller-api.ts +89 -0
- package/dist/apis/energy-cost-analysis-controller-api.d.ts +47 -0
- package/dist/apis/energy-cost-analysis-controller-api.js +70 -0
- package/dist/apis/energy-cost-controller-api.d.ts +47 -0
- package/dist/apis/energy-cost-controller-api.js +68 -0
- package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +47 -0
- package/dist/esm/apis/energy-cost-analysis-controller-api.js +70 -0
- package/dist/esm/apis/energy-cost-controller-api.d.ts +47 -0
- package/dist/esm/apis/energy-cost-controller-api.js +68 -0
- package/dist/esm/models/energy-cost-analysis-query-dto.d.ts +6 -0
- package/dist/esm/models/energy-cost-two-list-vo.d.ts +114 -0
- package/dist/esm/models/energy-cost-two-list-vo.js +14 -0
- package/dist/esm/models/index.d.ts +2 -0
- package/dist/esm/models/index.js +2 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- package/dist/esm/models/json-result-list-energy-cost-two-list-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-energy-cost-two-list-vo.js +14 -0
- package/dist/models/energy-cost-analysis-query-dto.d.ts +6 -0
- package/dist/models/energy-cost-two-list-vo.d.ts +114 -0
- package/dist/models/energy-cost-two-list-vo.js +15 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- package/dist/models/json-result-list-energy-cost-two-list-vo.d.ts +62 -0
- package/dist/models/json-result-list-energy-cost-two-list-vo.js +15 -0
- package/models/energy-cost-analysis-query-dto.ts +6 -0
- package/models/energy-cost-two-list-vo.ts +120 -0
- package/models/index.ts +2 -0
- package/models/ipage-energy-cost-record-info-vo.ts +4 -4
- package/models/json-result-list-energy-cost-two-list-vo.ts +72 -0
- package/ossutil.log +1092 -1089
- package/package.json +1 -1
|
@@ -0,0 +1,114 @@
|
|
|
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
|
+
* 能源看板-二级面板-列表VO
|
|
14
|
+
* @export
|
|
15
|
+
* @interface EnergyCostTwoListVO
|
|
16
|
+
*/
|
|
17
|
+
export interface EnergyCostTwoListVO {
|
|
18
|
+
/**
|
|
19
|
+
* 大区
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof EnergyCostTwoListVO
|
|
22
|
+
*/
|
|
23
|
+
'region'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* 小微
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof EnergyCostTwoListVO
|
|
28
|
+
*/
|
|
29
|
+
'smallWe'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* 中心
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof EnergyCostTwoListVO
|
|
34
|
+
*/
|
|
35
|
+
'center'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* 园区
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof EnergyCostTwoListVO
|
|
40
|
+
*/
|
|
41
|
+
'parkName'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* 园区ID
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof EnergyCostTwoListVO
|
|
46
|
+
*/
|
|
47
|
+
'parkId'?: number;
|
|
48
|
+
/**
|
|
49
|
+
* 账单月
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof EnergyCostTwoListVO
|
|
52
|
+
*/
|
|
53
|
+
'yearMonths'?: number;
|
|
54
|
+
/**
|
|
55
|
+
* 当期用量
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof EnergyCostTwoListVO
|
|
58
|
+
*/
|
|
59
|
+
'currentUsage'?: number;
|
|
60
|
+
/**
|
|
61
|
+
* 本期费用
|
|
62
|
+
* @type {number}
|
|
63
|
+
* @memberof EnergyCostTwoListVO
|
|
64
|
+
*/
|
|
65
|
+
'currentCost'?: number;
|
|
66
|
+
/**
|
|
67
|
+
* 上期费用
|
|
68
|
+
* @type {number}
|
|
69
|
+
* @memberof EnergyCostTwoListVO
|
|
70
|
+
*/
|
|
71
|
+
'lastPeriodCost'?: number;
|
|
72
|
+
/**
|
|
73
|
+
* 当期费用单价
|
|
74
|
+
* @type {number}
|
|
75
|
+
* @memberof EnergyCostTwoListVO
|
|
76
|
+
*/
|
|
77
|
+
'currentUnitPrice'?: number;
|
|
78
|
+
/**
|
|
79
|
+
* 本期单平单价
|
|
80
|
+
* @type {number}
|
|
81
|
+
* @memberof EnergyCostTwoListVO
|
|
82
|
+
*/
|
|
83
|
+
'currentPricePerSquareMeter'?: number;
|
|
84
|
+
/**
|
|
85
|
+
* 年平均单平单价
|
|
86
|
+
* @type {number}
|
|
87
|
+
* @memberof EnergyCostTwoListVO
|
|
88
|
+
*/
|
|
89
|
+
'yearAvgPricePerSquareMeter'?: number;
|
|
90
|
+
/**
|
|
91
|
+
* 去年同期单平单价
|
|
92
|
+
* @type {number}
|
|
93
|
+
* @memberof EnergyCostTwoListVO
|
|
94
|
+
*/
|
|
95
|
+
'lastYearSamePeriodPricePerSquareMeter'?: number;
|
|
96
|
+
/**
|
|
97
|
+
* 本期单耗
|
|
98
|
+
* @type {number}
|
|
99
|
+
* @memberof EnergyCostTwoListVO
|
|
100
|
+
*/
|
|
101
|
+
'currentCostPerSquareMeter'?: number;
|
|
102
|
+
/**
|
|
103
|
+
* 年平均单耗
|
|
104
|
+
* @type {number}
|
|
105
|
+
* @memberof EnergyCostTwoListVO
|
|
106
|
+
*/
|
|
107
|
+
'yearAvgCostPerSquareMeter'?: number;
|
|
108
|
+
/**
|
|
109
|
+
* 去年同期单耗
|
|
110
|
+
* @type {number}
|
|
111
|
+
* @memberof EnergyCostTwoListVO
|
|
112
|
+
*/
|
|
113
|
+
'lastYearSamePeriodCostPerSquareMeter'?: number;
|
|
114
|
+
}
|
|
@@ -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 });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -124,6 +124,7 @@ export * from './energy-cost-setting-delete-dto';
|
|
|
124
124
|
export * from './energy-cost-setting-summy-add-dto';
|
|
125
125
|
export * from './energy-cost-setting-summy-update-dto';
|
|
126
126
|
export * from './energy-cost-trend-vo';
|
|
127
|
+
export * from './energy-cost-two-list-vo';
|
|
127
128
|
export * from './energy-cost-unit-price-analysis-vo';
|
|
128
129
|
export * from './energy-cost-update-setting-dto';
|
|
129
130
|
export * from './equipment';
|
|
@@ -252,6 +253,7 @@ export * from './json-result-list-energy-cost-analysis-list-vo';
|
|
|
252
253
|
export * from './json-result-list-energy-cost-month-setting-list-summary-standards-vo';
|
|
253
254
|
export * from './json-result-list-energy-cost-month-setting-list-vo';
|
|
254
255
|
export * from './json-result-list-energy-cost-trend-vo';
|
|
256
|
+
export * from './json-result-list-energy-cost-two-list-vo';
|
|
255
257
|
export * from './json-result-list-equipment-detail-dto';
|
|
256
258
|
export * from './json-result-list-equipment-qr-code-dto';
|
|
257
259
|
export * from './json-result-list-equipment-system-tree-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -140,6 +140,7 @@ __exportStar(require("./energy-cost-setting-delete-dto"), exports);
|
|
|
140
140
|
__exportStar(require("./energy-cost-setting-summy-add-dto"), exports);
|
|
141
141
|
__exportStar(require("./energy-cost-setting-summy-update-dto"), exports);
|
|
142
142
|
__exportStar(require("./energy-cost-trend-vo"), exports);
|
|
143
|
+
__exportStar(require("./energy-cost-two-list-vo"), exports);
|
|
143
144
|
__exportStar(require("./energy-cost-unit-price-analysis-vo"), exports);
|
|
144
145
|
__exportStar(require("./energy-cost-update-setting-dto"), exports);
|
|
145
146
|
__exportStar(require("./equipment"), exports);
|
|
@@ -268,6 +269,7 @@ __exportStar(require("./json-result-list-energy-cost-analysis-list-vo"), exports
|
|
|
268
269
|
__exportStar(require("./json-result-list-energy-cost-month-setting-list-summary-standards-vo"), exports);
|
|
269
270
|
__exportStar(require("./json-result-list-energy-cost-month-setting-list-vo"), exports);
|
|
270
271
|
__exportStar(require("./json-result-list-energy-cost-trend-vo"), exports);
|
|
272
|
+
__exportStar(require("./json-result-list-energy-cost-two-list-vo"), exports);
|
|
271
273
|
__exportStar(require("./json-result-list-equipment-detail-dto"), exports);
|
|
272
274
|
__exportStar(require("./json-result-list-equipment-qr-code-dto"), exports);
|
|
273
275
|
__exportStar(require("./json-result-list-equipment-system-tree-dto"), exports);
|
|
@@ -36,16 +36,16 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
36
36
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {number}
|
|
40
40
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'pages'?: number;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
|
-
* @type {
|
|
45
|
+
* @type {boolean}
|
|
46
46
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
47
|
*/
|
|
48
|
-
'
|
|
48
|
+
'searchCount'?: boolean;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
51
|
* @type {boolean}
|
|
@@ -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 { EnergyCostTwoListVO } from './energy-cost-two-list-vo';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListEnergyCostTwoListVO
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListEnergyCostTwoListVO {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<EnergyCostTwoListVO>}
|
|
41
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<EnergyCostTwoListVO> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
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 });
|
|
@@ -80,6 +80,12 @@ export interface EnergyCostAnalysisQueryDTO {
|
|
|
80
80
|
* @memberof EnergyCostAnalysisQueryDTO
|
|
81
81
|
*/
|
|
82
82
|
'energyTypes': Array<EnergyCostAnalysisQueryDTOEnergyTypesEnum>;
|
|
83
|
+
/**
|
|
84
|
+
* 场景来源
|
|
85
|
+
* @type {Array<string>}
|
|
86
|
+
* @memberof EnergyCostAnalysisQueryDTO
|
|
87
|
+
*/
|
|
88
|
+
'billSource'?: Array<string>;
|
|
83
89
|
}
|
|
84
90
|
|
|
85
91
|
export const EnergyCostAnalysisQueryDTOEnergyTypesEnum = {
|
|
@@ -0,0 +1,120 @@
|
|
|
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
|
+
* 能源看板-二级面板-列表VO
|
|
19
|
+
* @export
|
|
20
|
+
* @interface EnergyCostTwoListVO
|
|
21
|
+
*/
|
|
22
|
+
export interface EnergyCostTwoListVO {
|
|
23
|
+
/**
|
|
24
|
+
* 大区
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof EnergyCostTwoListVO
|
|
27
|
+
*/
|
|
28
|
+
'region'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* 小微
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof EnergyCostTwoListVO
|
|
33
|
+
*/
|
|
34
|
+
'smallWe'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* 中心
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof EnergyCostTwoListVO
|
|
39
|
+
*/
|
|
40
|
+
'center'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 园区
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof EnergyCostTwoListVO
|
|
45
|
+
*/
|
|
46
|
+
'parkName'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* 园区ID
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof EnergyCostTwoListVO
|
|
51
|
+
*/
|
|
52
|
+
'parkId'?: number;
|
|
53
|
+
/**
|
|
54
|
+
* 账单月
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof EnergyCostTwoListVO
|
|
57
|
+
*/
|
|
58
|
+
'yearMonths'?: number;
|
|
59
|
+
/**
|
|
60
|
+
* 当期用量
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof EnergyCostTwoListVO
|
|
63
|
+
*/
|
|
64
|
+
'currentUsage'?: number;
|
|
65
|
+
/**
|
|
66
|
+
* 本期费用
|
|
67
|
+
* @type {number}
|
|
68
|
+
* @memberof EnergyCostTwoListVO
|
|
69
|
+
*/
|
|
70
|
+
'currentCost'?: number;
|
|
71
|
+
/**
|
|
72
|
+
* 上期费用
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof EnergyCostTwoListVO
|
|
75
|
+
*/
|
|
76
|
+
'lastPeriodCost'?: number;
|
|
77
|
+
/**
|
|
78
|
+
* 当期费用单价
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof EnergyCostTwoListVO
|
|
81
|
+
*/
|
|
82
|
+
'currentUnitPrice'?: number;
|
|
83
|
+
/**
|
|
84
|
+
* 本期单平单价
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof EnergyCostTwoListVO
|
|
87
|
+
*/
|
|
88
|
+
'currentPricePerSquareMeter'?: number;
|
|
89
|
+
/**
|
|
90
|
+
* 年平均单平单价
|
|
91
|
+
* @type {number}
|
|
92
|
+
* @memberof EnergyCostTwoListVO
|
|
93
|
+
*/
|
|
94
|
+
'yearAvgPricePerSquareMeter'?: number;
|
|
95
|
+
/**
|
|
96
|
+
* 去年同期单平单价
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof EnergyCostTwoListVO
|
|
99
|
+
*/
|
|
100
|
+
'lastYearSamePeriodPricePerSquareMeter'?: number;
|
|
101
|
+
/**
|
|
102
|
+
* 本期单耗
|
|
103
|
+
* @type {number}
|
|
104
|
+
* @memberof EnergyCostTwoListVO
|
|
105
|
+
*/
|
|
106
|
+
'currentCostPerSquareMeter'?: number;
|
|
107
|
+
/**
|
|
108
|
+
* 年平均单耗
|
|
109
|
+
* @type {number}
|
|
110
|
+
* @memberof EnergyCostTwoListVO
|
|
111
|
+
*/
|
|
112
|
+
'yearAvgCostPerSquareMeter'?: number;
|
|
113
|
+
/**
|
|
114
|
+
* 去年同期单耗
|
|
115
|
+
* @type {number}
|
|
116
|
+
* @memberof EnergyCostTwoListVO
|
|
117
|
+
*/
|
|
118
|
+
'lastYearSamePeriodCostPerSquareMeter'?: number;
|
|
119
|
+
}
|
|
120
|
+
|
package/models/index.ts
CHANGED
|
@@ -124,6 +124,7 @@ export * from './energy-cost-setting-delete-dto';
|
|
|
124
124
|
export * from './energy-cost-setting-summy-add-dto';
|
|
125
125
|
export * from './energy-cost-setting-summy-update-dto';
|
|
126
126
|
export * from './energy-cost-trend-vo';
|
|
127
|
+
export * from './energy-cost-two-list-vo';
|
|
127
128
|
export * from './energy-cost-unit-price-analysis-vo';
|
|
128
129
|
export * from './energy-cost-update-setting-dto';
|
|
129
130
|
export * from './equipment';
|
|
@@ -252,6 +253,7 @@ export * from './json-result-list-energy-cost-analysis-list-vo';
|
|
|
252
253
|
export * from './json-result-list-energy-cost-month-setting-list-summary-standards-vo';
|
|
253
254
|
export * from './json-result-list-energy-cost-month-setting-list-vo';
|
|
254
255
|
export * from './json-result-list-energy-cost-trend-vo';
|
|
256
|
+
export * from './json-result-list-energy-cost-two-list-vo';
|
|
255
257
|
export * from './json-result-list-equipment-detail-dto';
|
|
256
258
|
export * from './json-result-list-equipment-qr-code-dto';
|
|
257
259
|
export * from './json-result-list-equipment-system-tree-dto';
|
|
@@ -43,16 +43,16 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
43
43
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {
|
|
46
|
+
* @type {number}
|
|
47
47
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'pages'?: number;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {boolean}
|
|
53
53
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {boolean}
|
|
@@ -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 { EnergyCostTwoListVO } from './energy-cost-two-list-vo';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultListEnergyCostTwoListVO
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultListEnergyCostTwoListVO {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* 返回数据,可以是任意类型的值
|
|
49
|
+
* @type {Array<EnergyCostTwoListVO>}
|
|
50
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
51
|
+
*/
|
|
52
|
+
'data'?: Array<EnergyCostTwoListVO> | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultListEnergyCostTwoListVO
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|