@gizone/rrs-client 4.2.9-alpha.612 → 4.2.9-alpha.614
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 +3 -3
- package/dist/esm/models/sys-user.d.ts +4 -4
- 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 +3 -3
- package/dist/models/sys-user.d.ts +4 -4
- package/models/energy-cost-analysis-query-dto.ts +9 -1
- package/models/ipage-energy-cost-record-info-vo.ts +3 -3
- package/models/sys-user.ts +4 -4
- 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
|
+
};
|
|
@@ -44,15 +44,15 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
44
44
|
*
|
|
45
45
|
* @type {boolean}
|
|
46
46
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
|
+
* @deprecated
|
|
47
48
|
*/
|
|
48
|
-
'
|
|
49
|
+
'hitCount'?: boolean;
|
|
49
50
|
/**
|
|
50
51
|
*
|
|
51
52
|
* @type {boolean}
|
|
52
53
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
53
|
-
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -377,14 +377,14 @@ export interface SysUser {
|
|
|
377
377
|
'sourceUserId'?: string;
|
|
378
378
|
/**
|
|
379
379
|
*
|
|
380
|
-
* @type {
|
|
380
|
+
* @type {string}
|
|
381
381
|
* @memberof SysUser
|
|
382
382
|
*/
|
|
383
|
-
'
|
|
383
|
+
'cid'?: string;
|
|
384
384
|
/**
|
|
385
385
|
*
|
|
386
|
-
* @type {
|
|
386
|
+
* @type {number}
|
|
387
387
|
* @memberof SysUser
|
|
388
388
|
*/
|
|
389
|
-
'
|
|
389
|
+
'cuserId'?: number;
|
|
390
390
|
}
|
|
@@ -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
|
+
};
|
|
@@ -44,15 +44,15 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
44
44
|
*
|
|
45
45
|
* @type {boolean}
|
|
46
46
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
|
+
* @deprecated
|
|
47
48
|
*/
|
|
48
|
-
'
|
|
49
|
+
'hitCount'?: boolean;
|
|
49
50
|
/**
|
|
50
51
|
*
|
|
51
52
|
* @type {boolean}
|
|
52
53
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
53
|
-
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -377,14 +377,14 @@ export interface SysUser {
|
|
|
377
377
|
'sourceUserId'?: string;
|
|
378
378
|
/**
|
|
379
379
|
*
|
|
380
|
-
* @type {
|
|
380
|
+
* @type {string}
|
|
381
381
|
* @memberof SysUser
|
|
382
382
|
*/
|
|
383
|
-
'
|
|
383
|
+
'cid'?: string;
|
|
384
384
|
/**
|
|
385
385
|
*
|
|
386
|
-
* @type {
|
|
386
|
+
* @type {number}
|
|
387
387
|
* @memberof SysUser
|
|
388
388
|
*/
|
|
389
|
-
'
|
|
389
|
+
'cuserId'?: number;
|
|
390
390
|
}
|
|
@@ -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
|
|
|
@@ -51,15 +51,15 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
51
51
|
*
|
|
52
52
|
* @type {boolean}
|
|
53
53
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
54
|
+
* @deprecated
|
|
54
55
|
*/
|
|
55
|
-
'
|
|
56
|
+
'hitCount'?: boolean;
|
|
56
57
|
/**
|
|
57
58
|
*
|
|
58
59
|
* @type {boolean}
|
|
59
60
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
60
|
-
* @deprecated
|
|
61
61
|
*/
|
|
62
|
-
'
|
|
62
|
+
'searchCount'?: boolean;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|
package/models/sys-user.ts
CHANGED
|
@@ -388,16 +388,16 @@ export interface SysUser {
|
|
|
388
388
|
'sourceUserId'?: string;
|
|
389
389
|
/**
|
|
390
390
|
*
|
|
391
|
-
* @type {
|
|
391
|
+
* @type {string}
|
|
392
392
|
* @memberof SysUser
|
|
393
393
|
*/
|
|
394
|
-
'
|
|
394
|
+
'cid'?: string;
|
|
395
395
|
/**
|
|
396
396
|
*
|
|
397
|
-
* @type {
|
|
397
|
+
* @type {number}
|
|
398
398
|
* @memberof SysUser
|
|
399
399
|
*/
|
|
400
|
-
'
|
|
400
|
+
'cuserId'?: number;
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
|