@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,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 { EnergyCostTrendVO } from './energy-cost-trend-vo';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListEnergyCostTrendVO
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListEnergyCostTrendVO {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<EnergyCostTrendVO>}
|
|
41
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<EnergyCostTrendVO> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
export {};
|
|
@@ -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 { TwoEnergyConsumptionSummarVO } from './two-energy-consumption-summar-vo';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultTwoEnergyConsumptionSummarVO
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultTwoEnergyConsumptionSummarVO {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {TwoEnergyConsumptionSummarVO}
|
|
41
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
42
|
+
*/
|
|
43
|
+
'data'?: TwoEnergyConsumptionSummarVO | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
export {};
|
|
@@ -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,14 @@
|
|
|
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
|
+
export {};
|
|
@@ -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,14 @@
|
|
|
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
|
+
export {};
|
|
@@ -82,13 +82,13 @@ export interface EnergyCostAddRecordDTO {
|
|
|
82
82
|
* @type {number}
|
|
83
83
|
* @memberof EnergyCostAddRecordDTO
|
|
84
84
|
*/
|
|
85
|
-
'powerFactorSurcharge'
|
|
85
|
+
'powerFactorSurcharge'?: number;
|
|
86
86
|
/**
|
|
87
87
|
* 调前电费
|
|
88
88
|
* @type {number}
|
|
89
89
|
* @memberof EnergyCostAddRecordDTO
|
|
90
90
|
*/
|
|
91
|
-
'billAmountBefore'
|
|
91
|
+
'billAmountBefore'?: number;
|
|
92
92
|
/**
|
|
93
93
|
* 单价
|
|
94
94
|
* @type {number}
|
|
@@ -21,18 +21,6 @@ export interface EnergyCostAnalysisListVO {
|
|
|
21
21
|
* @memberof EnergyCostAnalysisListVO
|
|
22
22
|
*/
|
|
23
23
|
'energyType'?: EnergyCostAnalysisListVOEnergyTypeEnum;
|
|
24
|
-
/**
|
|
25
|
-
* 账单开始日期
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof EnergyCostAnalysisListVO
|
|
28
|
-
*/
|
|
29
|
-
'billDateStart'?: string;
|
|
30
|
-
/**
|
|
31
|
-
* 账单结束日期
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof EnergyCostAnalysisListVO
|
|
34
|
-
*/
|
|
35
|
-
'billDateEnd'?: string;
|
|
36
24
|
/**
|
|
37
25
|
* 场景类型
|
|
38
26
|
* @type {string}
|
|
@@ -74,7 +74,7 @@ export interface EnergyCostAnalysisQueryDTO {
|
|
|
74
74
|
* @type {Array<string>}
|
|
75
75
|
* @memberof EnergyCostAnalysisQueryDTO
|
|
76
76
|
*/
|
|
77
|
-
'energyTypes'
|
|
77
|
+
'energyTypes': Array<EnergyCostAnalysisQueryDTOEnergyTypesEnum>;
|
|
78
78
|
}
|
|
79
79
|
export declare const EnergyCostAnalysisQueryDTOEnergyTypesEnum: {
|
|
80
80
|
readonly Electric: "ELECTRIC";
|
|
@@ -0,0 +1,38 @@
|
|
|
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 { MonthlyDataVO } from './monthly-data-vo';
|
|
13
|
+
/**
|
|
14
|
+
* 能源成本用量趋势
|
|
15
|
+
* @export
|
|
16
|
+
* @interface EnergyCostTrendVO
|
|
17
|
+
*/
|
|
18
|
+
export interface EnergyCostTrendVO {
|
|
19
|
+
/**
|
|
20
|
+
* 场景类型
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof EnergyCostTrendVO
|
|
23
|
+
*/
|
|
24
|
+
'scenario'?: EnergyCostTrendVOScenarioEnum;
|
|
25
|
+
/**
|
|
26
|
+
* 月份数据列表
|
|
27
|
+
* @type {Array<MonthlyDataVO>}
|
|
28
|
+
* @memberof EnergyCostTrendVO
|
|
29
|
+
*/
|
|
30
|
+
'monthlyData'?: Array<MonthlyDataVO>;
|
|
31
|
+
}
|
|
32
|
+
export declare const EnergyCostTrendVOScenarioEnum: {
|
|
33
|
+
readonly ColdStorage: "COLD_STORAGE";
|
|
34
|
+
readonly SmartWarehouse: "SMART_WAREHOUSE";
|
|
35
|
+
readonly LeasingTenant: "LEASING_TENANT";
|
|
36
|
+
readonly PrivateConventionalWarehouse: "PRIVATE_CONVENTIONAL_WAREHOUSE";
|
|
37
|
+
};
|
|
38
|
+
export type EnergyCostTrendVOScenarioEnum = typeof EnergyCostTrendVOScenarioEnum[keyof typeof EnergyCostTrendVOScenarioEnum];
|
|
@@ -0,0 +1,22 @@
|
|
|
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 });
|
|
16
|
+
exports.EnergyCostTrendVOScenarioEnum = void 0;
|
|
17
|
+
exports.EnergyCostTrendVOScenarioEnum = {
|
|
18
|
+
ColdStorage: 'COLD_STORAGE',
|
|
19
|
+
SmartWarehouse: 'SMART_WAREHOUSE',
|
|
20
|
+
LeasingTenant: 'LEASING_TENANT',
|
|
21
|
+
PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
|
|
22
|
+
};
|
package/dist/models/index.d.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';
|
package/dist/models/index.js
CHANGED
|
@@ -139,6 +139,7 @@ __exportStar(require("./energy-cost-scenarios-info-vo"), exports);
|
|
|
139
139
|
__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
|
+
__exportStar(require("./energy-cost-trend-vo"), exports);
|
|
142
143
|
__exportStar(require("./energy-cost-unit-price-analysis-vo"), exports);
|
|
143
144
|
__exportStar(require("./energy-cost-update-setting-dto"), exports);
|
|
144
145
|
__exportStar(require("./equipment"), exports);
|
|
@@ -266,6 +267,7 @@ __exportStar(require("./json-result-list-dashboard-work-order-type-subcategory-g
|
|
|
266
267
|
__exportStar(require("./json-result-list-energy-cost-analysis-list-vo"), exports);
|
|
267
268
|
__exportStar(require("./json-result-list-energy-cost-month-setting-list-summary-standards-vo"), exports);
|
|
268
269
|
__exportStar(require("./json-result-list-energy-cost-month-setting-list-vo"), exports);
|
|
270
|
+
__exportStar(require("./json-result-list-energy-cost-trend-vo"), exports);
|
|
269
271
|
__exportStar(require("./json-result-list-equipment-detail-dto"), exports);
|
|
270
272
|
__exportStar(require("./json-result-list-equipment-qr-code-dto"), exports);
|
|
271
273
|
__exportStar(require("./json-result-list-equipment-system-tree-dto"), exports);
|
|
@@ -338,6 +340,7 @@ __exportStar(require("./json-result-switch-park-v2-dto"), exports);
|
|
|
338
340
|
__exportStar(require("./json-result-sys-dept"), exports);
|
|
339
341
|
__exportStar(require("./json-result-sys-user"), exports);
|
|
340
342
|
__exportStar(require("./json-result-sys-user-msg-dto"), exports);
|
|
343
|
+
__exportStar(require("./json-result-two-energy-consumption-summar-vo"), exports);
|
|
341
344
|
__exportStar(require("./json-result-user-add-redis-list-vo"), exports);
|
|
342
345
|
__exportStar(require("./json-result-user-settings-entity"), exports);
|
|
343
346
|
__exportStar(require("./json-result-violation-work-order-details-dto"), exports);
|
|
@@ -358,6 +361,7 @@ __exportStar(require("./monitoring-coverage-alert-info"), exports);
|
|
|
358
361
|
__exportStar(require("./monitoring-coverage-alert-process-vo"), exports);
|
|
359
362
|
__exportStar(require("./monitoring-coverage-alert-reason-enum"), exports);
|
|
360
363
|
__exportStar(require("./monitoring-coverage-alert-work-order-details-dto"), exports);
|
|
364
|
+
__exportStar(require("./monthly-data-vo"), exports);
|
|
361
365
|
__exportStar(require("./network-monitor-repair-add-vo"), exports);
|
|
362
366
|
__exportStar(require("./network-monitor-repair-decision-vo"), exports);
|
|
363
367
|
__exportStar(require("./network-monitor-repair-details-dto"), exports);
|
|
@@ -506,6 +510,7 @@ __exportStar(require("./system-user-msg-source-type-enum"), exports);
|
|
|
506
510
|
__exportStar(require("./system-user-msg-type-enum"), exports);
|
|
507
511
|
__exportStar(require("./table-data-info"), exports);
|
|
508
512
|
__exportStar(require("./third-party-system-enum"), exports);
|
|
513
|
+
__exportStar(require("./two-energy-consumption-summar-vo"), exports);
|
|
509
514
|
__exportStar(require("./user-add-redis-list-vo"), exports);
|
|
510
515
|
__exportStar(require("./user-batch-import-upload-request"), exports);
|
|
511
516
|
__exportStar(require("./user-bind-body"), exports);
|
|
@@ -30,29 +30,29 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
30
30
|
'current'?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {Array<EnergyCostRecordInfoVO>}
|
|
34
34
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
35
35
|
*/
|
|
36
|
-
'
|
|
36
|
+
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {boolean}
|
|
40
40
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
|
-
* @deprecated
|
|
42
41
|
*/
|
|
43
|
-
'
|
|
42
|
+
'searchCount'?: boolean;
|
|
44
43
|
/**
|
|
45
44
|
*
|
|
46
|
-
* @type {
|
|
45
|
+
* @type {number}
|
|
47
46
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
48
47
|
*/
|
|
49
|
-
'
|
|
48
|
+
'pages'?: number;
|
|
50
49
|
/**
|
|
51
50
|
*
|
|
52
51
|
* @type {boolean}
|
|
53
52
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
53
|
+
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'hitCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -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 { EnergyCostTrendVO } from './energy-cost-trend-vo';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListEnergyCostTrendVO
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListEnergyCostTrendVO {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<EnergyCostTrendVO>}
|
|
41
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<EnergyCostTrendVO> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListEnergyCostTrendVO
|
|
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 });
|
|
@@ -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 { TwoEnergyConsumptionSummarVO } from './two-energy-consumption-summar-vo';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultTwoEnergyConsumptionSummarVO
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultTwoEnergyConsumptionSummarVO {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {TwoEnergyConsumptionSummarVO}
|
|
41
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
42
|
+
*/
|
|
43
|
+
'data'?: TwoEnergyConsumptionSummarVO | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultTwoEnergyConsumptionSummarVO
|
|
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 });
|