@gizone/rrs-client 4.2.9-alpha.557 → 4.2.9-alpha.561
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 +5 -0
- package/apis/energy-cost-analysis-controller-api.ts +449 -0
- package/dist/apis/energy-cost-analysis-controller-api.d.ts +232 -0
- package/dist/apis/energy-cost-analysis-controller-api.js +350 -0
- package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +232 -0
- package/dist/esm/apis/energy-cost-analysis-controller-api.js +350 -0
- package/dist/esm/models/energy-cost-add-record-dto.d.ts +2 -2
- package/dist/esm/models/energy-cost-analysis-list-vo.d.ts +0 -12
- package/dist/esm/models/energy-cost-analysis-query-dto.d.ts +1 -1
- package/dist/esm/models/energy-cost-trend-vo.d.ts +38 -0
- package/dist/esm/models/energy-cost-trend-vo.js +19 -0
- package/dist/esm/models/index.d.ts +5 -0
- package/dist/esm/models/index.js +5 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
- package/dist/esm/models/json-result-list-energy-cost-trend-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-energy-cost-trend-vo.js +14 -0
- package/dist/esm/models/json-result-two-energy-consumption-summar-vo.d.ts +62 -0
- package/dist/esm/models/json-result-two-energy-consumption-summar-vo.js +14 -0
- package/dist/esm/models/monthly-data-vo.d.ts +48 -0
- package/dist/esm/models/monthly-data-vo.js +14 -0
- package/dist/esm/models/two-energy-consumption-summar-vo.d.ts +30 -0
- package/dist/esm/models/two-energy-consumption-summar-vo.js +14 -0
- package/dist/models/energy-cost-add-record-dto.d.ts +2 -2
- package/dist/models/energy-cost-analysis-list-vo.d.ts +0 -12
- package/dist/models/energy-cost-analysis-query-dto.d.ts +1 -1
- package/dist/models/energy-cost-trend-vo.d.ts +38 -0
- package/dist/models/energy-cost-trend-vo.js +22 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
- package/dist/models/json-result-list-energy-cost-trend-vo.d.ts +62 -0
- package/dist/models/json-result-list-energy-cost-trend-vo.js +15 -0
- package/dist/models/json-result-two-energy-consumption-summar-vo.d.ts +62 -0
- package/dist/models/json-result-two-energy-consumption-summar-vo.js +15 -0
- package/dist/models/monthly-data-vo.d.ts +48 -0
- package/dist/models/monthly-data-vo.js +15 -0
- package/dist/models/two-energy-consumption-summar-vo.d.ts +30 -0
- package/dist/models/two-energy-consumption-summar-vo.js +15 -0
- package/models/energy-cost-add-record-dto.ts +2 -2
- package/models/energy-cost-analysis-list-vo.ts +0 -12
- package/models/energy-cost-analysis-query-dto.ts +1 -1
- package/models/energy-cost-trend-vo.ts +49 -0
- package/models/index.ts +5 -0
- package/models/ipage-energy-cost-record-info-vo.ts +7 -7
- package/models/json-result-list-energy-cost-trend-vo.ts +72 -0
- package/models/json-result-two-energy-consumption-summar-vo.ts +72 -0
- package/models/monthly-data-vo.ts +54 -0
- package/models/two-energy-consumption-summar-vo.ts +36 -0
- package/ossutil.log +1089 -1083
- package/package.json +1 -1
|
@@ -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 MonthlyDataVO
|
|
16
|
+
*/
|
|
17
|
+
export interface MonthlyDataVO {
|
|
18
|
+
/**
|
|
19
|
+
* 月份
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof MonthlyDataVO
|
|
22
|
+
*/
|
|
23
|
+
'month'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* 用量
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof MonthlyDataVO
|
|
28
|
+
*/
|
|
29
|
+
'consumption'?: number;
|
|
30
|
+
/**
|
|
31
|
+
* 费用
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof MonthlyDataVO
|
|
34
|
+
*/
|
|
35
|
+
'cost'?: number;
|
|
36
|
+
/**
|
|
37
|
+
* 单耗
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof MonthlyDataVO
|
|
40
|
+
*/
|
|
41
|
+
'perUnitConsumption'?: number;
|
|
42
|
+
/**
|
|
43
|
+
* 单平单价
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof MonthlyDataVO
|
|
46
|
+
*/
|
|
47
|
+
'perAreaPrice'?: 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 });
|
|
@@ -0,0 +1,30 @@
|
|
|
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 TwoEnergyConsumptionSummarVO
|
|
16
|
+
*/
|
|
17
|
+
export interface TwoEnergyConsumptionSummarVO {
|
|
18
|
+
/**
|
|
19
|
+
* 用量
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof TwoEnergyConsumptionSummarVO
|
|
22
|
+
*/
|
|
23
|
+
'parkUtilityUsage'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 费用
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof TwoEnergyConsumptionSummarVO
|
|
28
|
+
*/
|
|
29
|
+
'billCharges'?: number;
|
|
30
|
+
}
|
|
@@ -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 });
|
|
@@ -91,13 +91,13 @@ export interface EnergyCostAddRecordDTO {
|
|
|
91
91
|
* @type {number}
|
|
92
92
|
* @memberof EnergyCostAddRecordDTO
|
|
93
93
|
*/
|
|
94
|
-
'powerFactorSurcharge'
|
|
94
|
+
'powerFactorSurcharge'?: number;
|
|
95
95
|
/**
|
|
96
96
|
* 调前电费
|
|
97
97
|
* @type {number}
|
|
98
98
|
* @memberof EnergyCostAddRecordDTO
|
|
99
99
|
*/
|
|
100
|
-
'billAmountBefore'
|
|
100
|
+
'billAmountBefore'?: number;
|
|
101
101
|
/**
|
|
102
102
|
* 单价
|
|
103
103
|
* @type {number}
|
|
@@ -26,18 +26,6 @@ export interface EnergyCostAnalysisListVO {
|
|
|
26
26
|
* @memberof EnergyCostAnalysisListVO
|
|
27
27
|
*/
|
|
28
28
|
'energyType'?: EnergyCostAnalysisListVOEnergyTypeEnum;
|
|
29
|
-
/**
|
|
30
|
-
* 账单开始日期
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof EnergyCostAnalysisListVO
|
|
33
|
-
*/
|
|
34
|
-
'billDateStart'?: string;
|
|
35
|
-
/**
|
|
36
|
-
* 账单结束日期
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof EnergyCostAnalysisListVO
|
|
39
|
-
*/
|
|
40
|
-
'billDateEnd'?: string;
|
|
41
29
|
/**
|
|
42
30
|
* 场景类型
|
|
43
31
|
* @type {string}
|
|
@@ -79,7 +79,7 @@ export interface EnergyCostAnalysisQueryDTO {
|
|
|
79
79
|
* @type {Array<string>}
|
|
80
80
|
* @memberof EnergyCostAnalysisQueryDTO
|
|
81
81
|
*/
|
|
82
|
-
'energyTypes'
|
|
82
|
+
'energyTypes': Array<EnergyCostAnalysisQueryDTOEnergyTypesEnum>;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
export const EnergyCostAnalysisQueryDTOEnergyTypesEnum = {
|
|
@@ -0,0 +1,49 @@
|
|
|
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 { MonthlyDataVO } from './monthly-data-vo';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* 能源成本用量趋势
|
|
22
|
+
* @export
|
|
23
|
+
* @interface EnergyCostTrendVO
|
|
24
|
+
*/
|
|
25
|
+
export interface EnergyCostTrendVO {
|
|
26
|
+
/**
|
|
27
|
+
* 场景类型
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof EnergyCostTrendVO
|
|
30
|
+
*/
|
|
31
|
+
'scenario'?: EnergyCostTrendVOScenarioEnum;
|
|
32
|
+
/**
|
|
33
|
+
* 月份数据列表
|
|
34
|
+
* @type {Array<MonthlyDataVO>}
|
|
35
|
+
* @memberof EnergyCostTrendVO
|
|
36
|
+
*/
|
|
37
|
+
'monthlyData'?: Array<MonthlyDataVO>;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export const EnergyCostTrendVOScenarioEnum = {
|
|
41
|
+
ColdStorage: 'COLD_STORAGE',
|
|
42
|
+
SmartWarehouse: 'SMART_WAREHOUSE',
|
|
43
|
+
LeasingTenant: 'LEASING_TENANT',
|
|
44
|
+
PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
|
|
45
|
+
} as const;
|
|
46
|
+
|
|
47
|
+
export type EnergyCostTrendVOScenarioEnum = typeof EnergyCostTrendVOScenarioEnum[keyof typeof EnergyCostTrendVOScenarioEnum];
|
|
48
|
+
|
|
49
|
+
|
package/models/index.ts
CHANGED
|
@@ -123,6 +123,7 @@ export * from './energy-cost-scenarios-info-vo';
|
|
|
123
123
|
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
|
+
export * from './energy-cost-trend-vo';
|
|
126
127
|
export * from './energy-cost-unit-price-analysis-vo';
|
|
127
128
|
export * from './energy-cost-update-setting-dto';
|
|
128
129
|
export * from './equipment';
|
|
@@ -250,6 +251,7 @@ export * from './json-result-list-dashboard-work-order-type-subcategory-group-st
|
|
|
250
251
|
export * from './json-result-list-energy-cost-analysis-list-vo';
|
|
251
252
|
export * from './json-result-list-energy-cost-month-setting-list-summary-standards-vo';
|
|
252
253
|
export * from './json-result-list-energy-cost-month-setting-list-vo';
|
|
254
|
+
export * from './json-result-list-energy-cost-trend-vo';
|
|
253
255
|
export * from './json-result-list-equipment-detail-dto';
|
|
254
256
|
export * from './json-result-list-equipment-qr-code-dto';
|
|
255
257
|
export * from './json-result-list-equipment-system-tree-dto';
|
|
@@ -322,6 +324,7 @@ export * from './json-result-switch-park-v2-dto';
|
|
|
322
324
|
export * from './json-result-sys-dept';
|
|
323
325
|
export * from './json-result-sys-user';
|
|
324
326
|
export * from './json-result-sys-user-msg-dto';
|
|
327
|
+
export * from './json-result-two-energy-consumption-summar-vo';
|
|
325
328
|
export * from './json-result-user-add-redis-list-vo';
|
|
326
329
|
export * from './json-result-user-settings-entity';
|
|
327
330
|
export * from './json-result-violation-work-order-details-dto';
|
|
@@ -342,6 +345,7 @@ export * from './monitoring-coverage-alert-info';
|
|
|
342
345
|
export * from './monitoring-coverage-alert-process-vo';
|
|
343
346
|
export * from './monitoring-coverage-alert-reason-enum';
|
|
344
347
|
export * from './monitoring-coverage-alert-work-order-details-dto';
|
|
348
|
+
export * from './monthly-data-vo';
|
|
345
349
|
export * from './network-monitor-repair-add-vo';
|
|
346
350
|
export * from './network-monitor-repair-decision-vo';
|
|
347
351
|
export * from './network-monitor-repair-details-dto';
|
|
@@ -490,6 +494,7 @@ export * from './system-user-msg-source-type-enum';
|
|
|
490
494
|
export * from './system-user-msg-type-enum';
|
|
491
495
|
export * from './table-data-info';
|
|
492
496
|
export * from './third-party-system-enum';
|
|
497
|
+
export * from './two-energy-consumption-summar-vo';
|
|
493
498
|
export * from './user-add-redis-list-vo';
|
|
494
499
|
export * from './user-batch-import-upload-request';
|
|
495
500
|
export * from './user-bind-body';
|
|
@@ -37,29 +37,29 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
37
37
|
'current'?: number;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {Array<EnergyCostRecordInfoVO>}
|
|
41
41
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
42
42
|
*/
|
|
43
|
-
'
|
|
43
|
+
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {boolean}
|
|
47
47
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
48
|
-
* @deprecated
|
|
49
48
|
*/
|
|
50
|
-
'
|
|
49
|
+
'searchCount'?: boolean;
|
|
51
50
|
/**
|
|
52
51
|
*
|
|
53
|
-
* @type {
|
|
52
|
+
* @type {number}
|
|
54
53
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
55
54
|
*/
|
|
56
|
-
'
|
|
55
|
+
'pages'?: number;
|
|
57
56
|
/**
|
|
58
57
|
*
|
|
59
58
|
* @type {boolean}
|
|
60
59
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
60
|
+
* @deprecated
|
|
61
61
|
*/
|
|
62
|
-
'
|
|
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 { EnergyCostTrendVO } from './energy-cost-trend-vo';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultListEnergyCostTrendVO
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultListEnergyCostTrendVO {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* 返回数据,可以是任意类型的值
|
|
49
|
+
* @type {Array<EnergyCostTrendVO>}
|
|
50
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
51
|
+
*/
|
|
52
|
+
'data'?: Array<EnergyCostTrendVO> | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -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 { TwoEnergyConsumptionSummarVO } from './two-energy-consumption-summar-vo';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultTwoEnergyConsumptionSummarVO
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultTwoEnergyConsumptionSummarVO {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {TwoEnergyConsumptionSummarVO}
|
|
50
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
51
|
+
*/
|
|
52
|
+
'data'?: TwoEnergyConsumptionSummarVO | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -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 MonthlyDataVO
|
|
21
|
+
*/
|
|
22
|
+
export interface MonthlyDataVO {
|
|
23
|
+
/**
|
|
24
|
+
* 月份
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof MonthlyDataVO
|
|
27
|
+
*/
|
|
28
|
+
'month'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* 用量
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof MonthlyDataVO
|
|
33
|
+
*/
|
|
34
|
+
'consumption'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 费用
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof MonthlyDataVO
|
|
39
|
+
*/
|
|
40
|
+
'cost'?: number;
|
|
41
|
+
/**
|
|
42
|
+
* 单耗
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof MonthlyDataVO
|
|
45
|
+
*/
|
|
46
|
+
'perUnitConsumption'?: number;
|
|
47
|
+
/**
|
|
48
|
+
* 单平单价
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof MonthlyDataVO
|
|
51
|
+
*/
|
|
52
|
+
'perAreaPrice'?: number;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
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 TwoEnergyConsumptionSummarVO
|
|
21
|
+
*/
|
|
22
|
+
export interface TwoEnergyConsumptionSummarVO {
|
|
23
|
+
/**
|
|
24
|
+
* 用量
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof TwoEnergyConsumptionSummarVO
|
|
27
|
+
*/
|
|
28
|
+
'parkUtilityUsage'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* 费用
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof TwoEnergyConsumptionSummarVO
|
|
33
|
+
*/
|
|
34
|
+
'billCharges'?: number;
|
|
35
|
+
}
|
|
36
|
+
|