@gizone/rrs-client 4.2.9-alpha.612 → 4.2.9-alpha.613
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/apis/energy-cost-analysis-controller-api.ts +20 -20
- package/dist/apis/energy-cost-analysis-controller-api.d.ts +10 -10
- package/dist/apis/energy-cost-analysis-controller-api.js +18 -18
- package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +10 -10
- package/dist/esm/apis/energy-cost-analysis-controller-api.js +18 -18
- package/dist/esm/models/energy-cost-analysis-query-dto.d.ts +8 -1
- package/dist/esm/models/energy-cost-analysis-query-dto.js +6 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
- package/dist/models/energy-cost-analysis-query-dto.d.ts +8 -1
- package/dist/models/energy-cost-analysis-query-dto.js +7 -1
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
- package/models/energy-cost-analysis-query-dto.ts +9 -1
- package/models/ipage-energy-cost-record-info-vo.ts +7 -7
- package/ossutil.log +1143 -1140
- package/package.json +1 -1
|
@@ -80,10 +80,17 @@ export interface EnergyCostAnalysisQueryDTO {
|
|
|
80
80
|
* @type {Array<string>}
|
|
81
81
|
* @memberof EnergyCostAnalysisQueryDTO
|
|
82
82
|
*/
|
|
83
|
-
'
|
|
83
|
+
'scenarios'?: Array<EnergyCostAnalysisQueryDTOScenariosEnum>;
|
|
84
84
|
}
|
|
85
85
|
export declare const EnergyCostAnalysisQueryDTOEnergyTypesEnum: {
|
|
86
86
|
readonly Electric: "ELECTRIC";
|
|
87
87
|
readonly Water: "WATER";
|
|
88
88
|
};
|
|
89
89
|
export type EnergyCostAnalysisQueryDTOEnergyTypesEnum = typeof EnergyCostAnalysisQueryDTOEnergyTypesEnum[keyof typeof EnergyCostAnalysisQueryDTOEnergyTypesEnum];
|
|
90
|
+
export declare const EnergyCostAnalysisQueryDTOScenariosEnum: {
|
|
91
|
+
readonly ColdStorage: "COLD_STORAGE";
|
|
92
|
+
readonly SmartWarehouse: "SMART_WAREHOUSE";
|
|
93
|
+
readonly LeasingTenant: "LEASING_TENANT";
|
|
94
|
+
readonly PrivateConventionalWarehouse: "PRIVATE_CONVENTIONAL_WAREHOUSE";
|
|
95
|
+
};
|
|
96
|
+
export type EnergyCostAnalysisQueryDTOScenariosEnum = typeof EnergyCostAnalysisQueryDTOScenariosEnum[keyof typeof EnergyCostAnalysisQueryDTOScenariosEnum];
|
|
@@ -15,3 +15,9 @@ export const EnergyCostAnalysisQueryDTOEnergyTypesEnum = {
|
|
|
15
15
|
Electric: 'ELECTRIC',
|
|
16
16
|
Water: 'WATER'
|
|
17
17
|
};
|
|
18
|
+
export const EnergyCostAnalysisQueryDTOScenariosEnum = {
|
|
19
|
+
ColdStorage: 'COLD_STORAGE',
|
|
20
|
+
SmartWarehouse: 'SMART_WAREHOUSE',
|
|
21
|
+
LeasingTenant: 'LEASING_TENANT',
|
|
22
|
+
PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
|
|
23
|
+
};
|
|
@@ -22,12 +22,6 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
22
22
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
23
23
|
*/
|
|
24
24
|
'total'?: number;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {number}
|
|
28
|
-
* @memberof IPageEnergyCostRecordInfoVO
|
|
29
|
-
*/
|
|
30
|
-
'current'?: number;
|
|
31
25
|
/**
|
|
32
26
|
*
|
|
33
27
|
* @type {Array<EnergyCostRecordInfoVO>}
|
|
@@ -39,13 +33,19 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
39
33
|
* @type {number}
|
|
40
34
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
35
|
*/
|
|
42
|
-
'
|
|
36
|
+
'current'?: number;
|
|
43
37
|
/**
|
|
44
38
|
*
|
|
45
39
|
* @type {boolean}
|
|
46
40
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
41
|
*/
|
|
48
42
|
'searchCount'?: boolean;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
|
+
*/
|
|
48
|
+
'pages'?: number;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
51
|
* @type {boolean}
|
|
@@ -80,10 +80,17 @@ export interface EnergyCostAnalysisQueryDTO {
|
|
|
80
80
|
* @type {Array<string>}
|
|
81
81
|
* @memberof EnergyCostAnalysisQueryDTO
|
|
82
82
|
*/
|
|
83
|
-
'
|
|
83
|
+
'scenarios'?: Array<EnergyCostAnalysisQueryDTOScenariosEnum>;
|
|
84
84
|
}
|
|
85
85
|
export declare const EnergyCostAnalysisQueryDTOEnergyTypesEnum: {
|
|
86
86
|
readonly Electric: "ELECTRIC";
|
|
87
87
|
readonly Water: "WATER";
|
|
88
88
|
};
|
|
89
89
|
export type EnergyCostAnalysisQueryDTOEnergyTypesEnum = typeof EnergyCostAnalysisQueryDTOEnergyTypesEnum[keyof typeof EnergyCostAnalysisQueryDTOEnergyTypesEnum];
|
|
90
|
+
export declare const EnergyCostAnalysisQueryDTOScenariosEnum: {
|
|
91
|
+
readonly ColdStorage: "COLD_STORAGE";
|
|
92
|
+
readonly SmartWarehouse: "SMART_WAREHOUSE";
|
|
93
|
+
readonly LeasingTenant: "LEASING_TENANT";
|
|
94
|
+
readonly PrivateConventionalWarehouse: "PRIVATE_CONVENTIONAL_WAREHOUSE";
|
|
95
|
+
};
|
|
96
|
+
export type EnergyCostAnalysisQueryDTOScenariosEnum = typeof EnergyCostAnalysisQueryDTOScenariosEnum[keyof typeof EnergyCostAnalysisQueryDTOScenariosEnum];
|
|
@@ -13,8 +13,14 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.EnergyCostAnalysisQueryDTOEnergyTypesEnum = void 0;
|
|
16
|
+
exports.EnergyCostAnalysisQueryDTOScenariosEnum = exports.EnergyCostAnalysisQueryDTOEnergyTypesEnum = void 0;
|
|
17
17
|
exports.EnergyCostAnalysisQueryDTOEnergyTypesEnum = {
|
|
18
18
|
Electric: 'ELECTRIC',
|
|
19
19
|
Water: 'WATER'
|
|
20
20
|
};
|
|
21
|
+
exports.EnergyCostAnalysisQueryDTOScenariosEnum = {
|
|
22
|
+
ColdStorage: 'COLD_STORAGE',
|
|
23
|
+
SmartWarehouse: 'SMART_WAREHOUSE',
|
|
24
|
+
LeasingTenant: 'LEASING_TENANT',
|
|
25
|
+
PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
|
|
26
|
+
};
|
|
@@ -22,12 +22,6 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
22
22
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
23
23
|
*/
|
|
24
24
|
'total'?: number;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {number}
|
|
28
|
-
* @memberof IPageEnergyCostRecordInfoVO
|
|
29
|
-
*/
|
|
30
|
-
'current'?: number;
|
|
31
25
|
/**
|
|
32
26
|
*
|
|
33
27
|
* @type {Array<EnergyCostRecordInfoVO>}
|
|
@@ -39,13 +33,19 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
39
33
|
* @type {number}
|
|
40
34
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
35
|
*/
|
|
42
|
-
'
|
|
36
|
+
'current'?: number;
|
|
43
37
|
/**
|
|
44
38
|
*
|
|
45
39
|
* @type {boolean}
|
|
46
40
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
41
|
*/
|
|
48
42
|
'searchCount'?: boolean;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
|
+
*/
|
|
48
|
+
'pages'?: number;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
51
|
* @type {boolean}
|
|
@@ -85,7 +85,7 @@ export interface EnergyCostAnalysisQueryDTO {
|
|
|
85
85
|
* @type {Array<string>}
|
|
86
86
|
* @memberof EnergyCostAnalysisQueryDTO
|
|
87
87
|
*/
|
|
88
|
-
'
|
|
88
|
+
'scenarios'?: Array<EnergyCostAnalysisQueryDTOScenariosEnum>;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
export const EnergyCostAnalysisQueryDTOEnergyTypesEnum = {
|
|
@@ -94,5 +94,13 @@ export const EnergyCostAnalysisQueryDTOEnergyTypesEnum = {
|
|
|
94
94
|
} as const;
|
|
95
95
|
|
|
96
96
|
export type EnergyCostAnalysisQueryDTOEnergyTypesEnum = typeof EnergyCostAnalysisQueryDTOEnergyTypesEnum[keyof typeof EnergyCostAnalysisQueryDTOEnergyTypesEnum];
|
|
97
|
+
export const EnergyCostAnalysisQueryDTOScenariosEnum = {
|
|
98
|
+
ColdStorage: 'COLD_STORAGE',
|
|
99
|
+
SmartWarehouse: 'SMART_WAREHOUSE',
|
|
100
|
+
LeasingTenant: 'LEASING_TENANT',
|
|
101
|
+
PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
|
|
102
|
+
} as const;
|
|
103
|
+
|
|
104
|
+
export type EnergyCostAnalysisQueryDTOScenariosEnum = typeof EnergyCostAnalysisQueryDTOScenariosEnum[keyof typeof EnergyCostAnalysisQueryDTOScenariosEnum];
|
|
97
105
|
|
|
98
106
|
|
|
@@ -29,12 +29,6 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
29
29
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
30
30
|
*/
|
|
31
31
|
'total'?: number;
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {number}
|
|
35
|
-
* @memberof IPageEnergyCostRecordInfoVO
|
|
36
|
-
*/
|
|
37
|
-
'current'?: number;
|
|
38
32
|
/**
|
|
39
33
|
*
|
|
40
34
|
* @type {Array<EnergyCostRecordInfoVO>}
|
|
@@ -46,13 +40,19 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
46
40
|
* @type {number}
|
|
47
41
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
48
42
|
*/
|
|
49
|
-
'
|
|
43
|
+
'current'?: number;
|
|
50
44
|
/**
|
|
51
45
|
*
|
|
52
46
|
* @type {boolean}
|
|
53
47
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
54
48
|
*/
|
|
55
49
|
'searchCount'?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof IPageEnergyCostRecordInfoVO
|
|
54
|
+
*/
|
|
55
|
+
'pages'?: number;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {boolean}
|