@gizone/rrs-client 4.2.9-alpha.537 → 4.2.9-alpha.538
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 +0 -1
- package/apis/energy-cost-controller-api.ts +199 -178
- package/dist/apis/energy-cost-controller-api.d.ts +113 -98
- package/dist/apis/energy-cost-controller-api.js +154 -140
- package/dist/esm/apis/energy-cost-controller-api.d.ts +113 -98
- package/dist/esm/apis/energy-cost-controller-api.js +153 -139
- package/dist/esm/models/energy-cost-add-record-dto.d.ts +22 -0
- package/dist/esm/models/energy-cost-add-record-dto.js +9 -0
- package/dist/esm/models/energy-cost-month-setting-list-vo.d.ts +41 -35
- package/dist/esm/models/energy-cost-month-setting-list-vo.js +1 -10
- package/dist/esm/models/energy-cost-record-info-vo.d.ts +40 -0
- package/dist/esm/models/energy-cost-record-info-vo.js +9 -0
- package/dist/esm/models/energy-cost-scenarios-info-vo.d.ts +11 -1
- package/dist/esm/models/energy-cost-scenarios-info-vo.js +9 -0
- package/dist/esm/models/index.d.ts +0 -1
- package/dist/esm/models/index.js +0 -1
- package/dist/esm/models/item.d.ts +22 -0
- package/dist/esm/models/item.js +9 -0
- package/dist/models/energy-cost-add-record-dto.d.ts +22 -0
- package/dist/models/energy-cost-add-record-dto.js +10 -1
- package/dist/models/energy-cost-month-setting-list-vo.d.ts +41 -35
- package/dist/models/energy-cost-month-setting-list-vo.js +0 -11
- package/dist/models/energy-cost-record-info-vo.d.ts +40 -0
- package/dist/models/energy-cost-record-info-vo.js +10 -1
- package/dist/models/energy-cost-scenarios-info-vo.d.ts +11 -1
- package/dist/models/energy-cost-scenarios-info-vo.js +10 -1
- package/dist/models/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/dist/models/item.d.ts +22 -0
- package/dist/models/item.js +10 -1
- package/models/energy-cost-add-record-dto.ts +23 -0
- package/models/energy-cost-month-setting-list-vo.ts +41 -39
- package/models/energy-cost-record-info-vo.ts +41 -0
- package/models/energy-cost-scenarios-info-vo.ts +12 -1
- package/models/index.ts +0 -1
- package/models/item.ts +23 -0
- package/ossutil.log +1050 -1047
- package/package.json +1 -1
- package/dist/esm/models/energy-cost-confirm-record-dto.d.ts +0 -42
- package/dist/esm/models/energy-cost-confirm-record-dto.js +0 -17
- package/dist/models/energy-cost-confirm-record-dto.d.ts +0 -42
- package/dist/models/energy-cost-confirm-record-dto.js +0 -20
- package/models/energy-cost-confirm-record-dto.ts +0 -53
|
@@ -16,81 +16,87 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface EnergyCostMonthSettingListVO {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {
|
|
19
|
+
* ID
|
|
20
|
+
* @type {string}
|
|
21
21
|
* @memberof EnergyCostMonthSettingListVO
|
|
22
22
|
*/
|
|
23
|
-
'id'?:
|
|
23
|
+
'id'?: string;
|
|
24
24
|
/**
|
|
25
|
-
* 园区
|
|
26
|
-
* @type {
|
|
25
|
+
* 园区ID
|
|
26
|
+
* @type {string}
|
|
27
27
|
* @memberof EnergyCostMonthSettingListVO
|
|
28
28
|
*/
|
|
29
|
-
'parkId'?:
|
|
29
|
+
'parkId'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* 年月
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof EnergyCostMonthSettingListVO
|
|
34
|
+
*/
|
|
35
|
+
'yearMonths'?: string;
|
|
30
36
|
/**
|
|
31
37
|
* 能源类型
|
|
32
38
|
* @type {string}
|
|
33
39
|
* @memberof EnergyCostMonthSettingListVO
|
|
34
40
|
*/
|
|
35
|
-
'energyType'?:
|
|
41
|
+
'energyType'?: string;
|
|
36
42
|
/**
|
|
37
|
-
*
|
|
43
|
+
* 冷藏场景ID
|
|
38
44
|
* @type {string}
|
|
39
45
|
* @memberof EnergyCostMonthSettingListVO
|
|
40
46
|
*/
|
|
41
|
-
'
|
|
47
|
+
'csId'?: string;
|
|
42
48
|
/**
|
|
43
|
-
*
|
|
49
|
+
* 冷藏场景标准值
|
|
44
50
|
* @type {string}
|
|
45
51
|
* @memberof EnergyCostMonthSettingListVO
|
|
46
52
|
*/
|
|
47
|
-
'
|
|
53
|
+
'csStandardValue'?: string;
|
|
48
54
|
/**
|
|
49
|
-
*
|
|
55
|
+
* 智慧仓库场景ID
|
|
50
56
|
* @type {string}
|
|
51
57
|
* @memberof EnergyCostMonthSettingListVO
|
|
52
58
|
*/
|
|
53
|
-
'
|
|
59
|
+
'swId'?: string;
|
|
54
60
|
/**
|
|
55
|
-
*
|
|
61
|
+
* 智慧仓库标准值
|
|
56
62
|
* @type {string}
|
|
57
63
|
* @memberof EnergyCostMonthSettingListVO
|
|
58
64
|
*/
|
|
59
|
-
'
|
|
65
|
+
'swStandardValue'?: string;
|
|
66
|
+
/**
|
|
67
|
+
* 租赁租户场景ID
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof EnergyCostMonthSettingListVO
|
|
70
|
+
*/
|
|
71
|
+
'ltId'?: string;
|
|
72
|
+
/**
|
|
73
|
+
* 租赁租户标准值
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof EnergyCostMonthSettingListVO
|
|
76
|
+
*/
|
|
77
|
+
'ltStandardValue'?: string;
|
|
60
78
|
/**
|
|
61
|
-
*
|
|
79
|
+
* 私有传统仓库场景ID
|
|
62
80
|
* @type {string}
|
|
63
81
|
* @memberof EnergyCostMonthSettingListVO
|
|
64
82
|
*/
|
|
65
|
-
'
|
|
83
|
+
'pcwId'?: string;
|
|
66
84
|
/**
|
|
67
|
-
*
|
|
85
|
+
* 私有传统仓库标准值
|
|
68
86
|
* @type {string}
|
|
69
87
|
* @memberof EnergyCostMonthSettingListVO
|
|
70
88
|
*/
|
|
71
|
-
'
|
|
89
|
+
'pcwStandardValue'?: string;
|
|
72
90
|
/**
|
|
73
|
-
*
|
|
91
|
+
* 无场景类型(水)ID
|
|
74
92
|
* @type {string}
|
|
75
93
|
* @memberof EnergyCostMonthSettingListVO
|
|
76
94
|
*/
|
|
77
|
-
'
|
|
95
|
+
'waterId'?: string;
|
|
78
96
|
/**
|
|
79
|
-
*
|
|
97
|
+
* 无场景类型(水)标准值
|
|
80
98
|
* @type {string}
|
|
81
99
|
* @memberof EnergyCostMonthSettingListVO
|
|
82
100
|
*/
|
|
83
|
-
'
|
|
101
|
+
'waterStandardValue'?: string;
|
|
84
102
|
}
|
|
85
|
-
export declare const EnergyCostMonthSettingListVOEnergyTypeEnum: {
|
|
86
|
-
readonly Electric: "ELECTRIC";
|
|
87
|
-
readonly Water: "WATER";
|
|
88
|
-
};
|
|
89
|
-
export type EnergyCostMonthSettingListVOEnergyTypeEnum = typeof EnergyCostMonthSettingListVOEnergyTypeEnum[keyof typeof EnergyCostMonthSettingListVOEnergyTypeEnum];
|
|
90
|
-
export declare const EnergyCostMonthSettingListVOUsageScenariosTypeEnum: {
|
|
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 EnergyCostMonthSettingListVOUsageScenariosTypeEnum = typeof EnergyCostMonthSettingListVOUsageScenariosTypeEnum[keyof typeof EnergyCostMonthSettingListVOUsageScenariosTypeEnum];
|
|
@@ -11,13 +11,4 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
-
export
|
|
15
|
-
Electric: 'ELECTRIC',
|
|
16
|
-
Water: 'WATER'
|
|
17
|
-
};
|
|
18
|
-
export const EnergyCostMonthSettingListVOUsageScenariosTypeEnum = {
|
|
19
|
-
ColdStorage: 'COLD_STORAGE',
|
|
20
|
-
SmartWarehouse: 'SMART_WAREHOUSE',
|
|
21
|
-
LeasingTenant: 'LEASING_TENANT',
|
|
22
|
-
PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
|
|
23
|
-
};
|
|
14
|
+
export {};
|
|
@@ -130,6 +130,36 @@ export interface EnergyCostRecordInfoVO {
|
|
|
130
130
|
* @memberof EnergyCostRecordInfoVO
|
|
131
131
|
*/
|
|
132
132
|
'costPerSquareMeter'?: number;
|
|
133
|
+
/**
|
|
134
|
+
* 标准值
|
|
135
|
+
* @type {number}
|
|
136
|
+
* @memberof EnergyCostRecordInfoVO
|
|
137
|
+
*/
|
|
138
|
+
'standardValue'?: number;
|
|
139
|
+
/**
|
|
140
|
+
* 是否超标 0未超标 1 超标
|
|
141
|
+
* @type {number}
|
|
142
|
+
* @memberof EnergyCostRecordInfoVO
|
|
143
|
+
*/
|
|
144
|
+
'isOverBudget'?: number;
|
|
145
|
+
/**
|
|
146
|
+
* 超标原因
|
|
147
|
+
* @type {string}
|
|
148
|
+
* @memberof EnergyCostRecordInfoVO
|
|
149
|
+
*/
|
|
150
|
+
'overrunReason'?: EnergyCostRecordInfoVOOverrunReasonEnum;
|
|
151
|
+
/**
|
|
152
|
+
* 备注
|
|
153
|
+
* @type {string}
|
|
154
|
+
* @memberof EnergyCostRecordInfoVO
|
|
155
|
+
*/
|
|
156
|
+
'remark'?: string;
|
|
157
|
+
/**
|
|
158
|
+
* 备注
|
|
159
|
+
* @type {string}
|
|
160
|
+
* @memberof EnergyCostRecordInfoVO
|
|
161
|
+
*/
|
|
162
|
+
'attachment'?: string;
|
|
133
163
|
/**
|
|
134
164
|
* 园区总面积
|
|
135
165
|
* @type {number}
|
|
@@ -190,3 +220,13 @@ export declare const EnergyCostRecordInfoVOBillSourceEnum: {
|
|
|
190
220
|
readonly WaterSupplyCompany: "WATER_SUPPLY_COMPANY";
|
|
191
221
|
};
|
|
192
222
|
export type EnergyCostRecordInfoVOBillSourceEnum = typeof EnergyCostRecordInfoVOBillSourceEnum[keyof typeof EnergyCostRecordInfoVOBillSourceEnum];
|
|
223
|
+
export declare const EnergyCostRecordInfoVOOverrunReasonEnum: {
|
|
224
|
+
readonly BusinessVolumeOperationTimeIncrease: "BUSINESS_VOLUME_OPERATION_TIME_INCREASE";
|
|
225
|
+
readonly BusinessVolumeChargingDeviceIncrease: "BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE";
|
|
226
|
+
readonly BusinessVolumeAreaIncrease: "BUSINESS_VOLUME_AREA_INCREASE";
|
|
227
|
+
readonly SocialCustomerEnergyConsumptionIncrease: "SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE";
|
|
228
|
+
readonly EnergyConsumingEquipmentIncrease: "ENERGY_CONSUMING_EQUIPMENT_INCREASE";
|
|
229
|
+
readonly AbnormalWeather: "ABNORMAL_WEATHER";
|
|
230
|
+
readonly Other: "OTHER";
|
|
231
|
+
};
|
|
232
|
+
export type EnergyCostRecordInfoVOOverrunReasonEnum = typeof EnergyCostRecordInfoVOOverrunReasonEnum[keyof typeof EnergyCostRecordInfoVOOverrunReasonEnum];
|
|
@@ -25,3 +25,12 @@ export const EnergyCostRecordInfoVOBillSourceEnum = {
|
|
|
25
25
|
GroupEnergyRealEstate: 'GROUP_ENERGY_REAL_ESTATE',
|
|
26
26
|
WaterSupplyCompany: 'WATER_SUPPLY_COMPANY'
|
|
27
27
|
};
|
|
28
|
+
export const EnergyCostRecordInfoVOOverrunReasonEnum = {
|
|
29
|
+
BusinessVolumeOperationTimeIncrease: 'BUSINESS_VOLUME_OPERATION_TIME_INCREASE',
|
|
30
|
+
BusinessVolumeChargingDeviceIncrease: 'BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE',
|
|
31
|
+
BusinessVolumeAreaIncrease: 'BUSINESS_VOLUME_AREA_INCREASE',
|
|
32
|
+
SocialCustomerEnergyConsumptionIncrease: 'SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE',
|
|
33
|
+
EnergyConsumingEquipmentIncrease: 'ENERGY_CONSUMING_EQUIPMENT_INCREASE',
|
|
34
|
+
AbnormalWeather: 'ABNORMAL_WEATHER',
|
|
35
|
+
Other: 'OTHER'
|
|
36
|
+
};
|
|
@@ -86,7 +86,7 @@ export interface EnergyCostScenariosInfoVO {
|
|
|
86
86
|
* @type {string}
|
|
87
87
|
* @memberof EnergyCostScenariosInfoVO
|
|
88
88
|
*/
|
|
89
|
-
'overrunReason'?:
|
|
89
|
+
'overrunReason'?: EnergyCostScenariosInfoVOOverrunReasonEnum;
|
|
90
90
|
/**
|
|
91
91
|
* 备注
|
|
92
92
|
* @type {string}
|
|
@@ -130,3 +130,13 @@ export declare const EnergyCostScenariosInfoVOUsageScenariosTypeEnum: {
|
|
|
130
130
|
readonly PrivateConventionalWarehouse: "PRIVATE_CONVENTIONAL_WAREHOUSE";
|
|
131
131
|
};
|
|
132
132
|
export type EnergyCostScenariosInfoVOUsageScenariosTypeEnum = typeof EnergyCostScenariosInfoVOUsageScenariosTypeEnum[keyof typeof EnergyCostScenariosInfoVOUsageScenariosTypeEnum];
|
|
133
|
+
export declare const EnergyCostScenariosInfoVOOverrunReasonEnum: {
|
|
134
|
+
readonly BusinessVolumeOperationTimeIncrease: "BUSINESS_VOLUME_OPERATION_TIME_INCREASE";
|
|
135
|
+
readonly BusinessVolumeChargingDeviceIncrease: "BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE";
|
|
136
|
+
readonly BusinessVolumeAreaIncrease: "BUSINESS_VOLUME_AREA_INCREASE";
|
|
137
|
+
readonly SocialCustomerEnergyConsumptionIncrease: "SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE";
|
|
138
|
+
readonly EnergyConsumingEquipmentIncrease: "ENERGY_CONSUMING_EQUIPMENT_INCREASE";
|
|
139
|
+
readonly AbnormalWeather: "ABNORMAL_WEATHER";
|
|
140
|
+
readonly Other: "OTHER";
|
|
141
|
+
};
|
|
142
|
+
export type EnergyCostScenariosInfoVOOverrunReasonEnum = typeof EnergyCostScenariosInfoVOOverrunReasonEnum[keyof typeof EnergyCostScenariosInfoVOOverrunReasonEnum];
|
|
@@ -21,3 +21,12 @@ export const EnergyCostScenariosInfoVOUsageScenariosTypeEnum = {
|
|
|
21
21
|
LeasingTenant: 'LEASING_TENANT',
|
|
22
22
|
PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
|
|
23
23
|
};
|
|
24
|
+
export const EnergyCostScenariosInfoVOOverrunReasonEnum = {
|
|
25
|
+
BusinessVolumeOperationTimeIncrease: 'BUSINESS_VOLUME_OPERATION_TIME_INCREASE',
|
|
26
|
+
BusinessVolumeChargingDeviceIncrease: 'BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE',
|
|
27
|
+
BusinessVolumeAreaIncrease: 'BUSINESS_VOLUME_AREA_INCREASE',
|
|
28
|
+
SocialCustomerEnergyConsumptionIncrease: 'SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE',
|
|
29
|
+
EnergyConsumingEquipmentIncrease: 'ENERGY_CONSUMING_EQUIPMENT_INCREASE',
|
|
30
|
+
AbnormalWeather: 'ABNORMAL_WEATHER',
|
|
31
|
+
Other: 'OTHER'
|
|
32
|
+
};
|
|
@@ -106,7 +106,6 @@ export * from './disaster-warning-standard-import-dto';
|
|
|
106
106
|
export * from './emission-standard-enum';
|
|
107
107
|
export * from './energy-cost-add-record-dto';
|
|
108
108
|
export * from './energy-cost-add-setting-dto';
|
|
109
|
-
export * from './energy-cost-confirm-record-dto';
|
|
110
109
|
export * from './energy-cost-month-setting-list-vo';
|
|
111
110
|
export * from './energy-cost-record-info-vo';
|
|
112
111
|
export * from './energy-cost-scenarios-info-vo';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -106,7 +106,6 @@ export * from './disaster-warning-standard-import-dto';
|
|
|
106
106
|
export * from './emission-standard-enum';
|
|
107
107
|
export * from './energy-cost-add-record-dto';
|
|
108
108
|
export * from './energy-cost-add-setting-dto';
|
|
109
|
-
export * from './energy-cost-confirm-record-dto';
|
|
110
109
|
export * from './energy-cost-month-setting-list-vo';
|
|
111
110
|
export * from './energy-cost-record-info-vo';
|
|
112
111
|
export * from './energy-cost-scenarios-info-vo';
|
|
@@ -39,6 +39,18 @@ export interface Item {
|
|
|
39
39
|
* @memberof Item
|
|
40
40
|
*/
|
|
41
41
|
'cost': number;
|
|
42
|
+
/**
|
|
43
|
+
* 超标原因
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof Item
|
|
46
|
+
*/
|
|
47
|
+
'overrunReason'?: ItemOverrunReasonEnum;
|
|
48
|
+
/**
|
|
49
|
+
* 备注
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof Item
|
|
52
|
+
*/
|
|
53
|
+
'remark'?: string;
|
|
42
54
|
/**
|
|
43
55
|
* 附件
|
|
44
56
|
* @type {string}
|
|
@@ -53,3 +65,13 @@ export declare const ItemScenarioEnum: {
|
|
|
53
65
|
readonly PrivateConventionalWarehouse: "PRIVATE_CONVENTIONAL_WAREHOUSE";
|
|
54
66
|
};
|
|
55
67
|
export type ItemScenarioEnum = typeof ItemScenarioEnum[keyof typeof ItemScenarioEnum];
|
|
68
|
+
export declare const ItemOverrunReasonEnum: {
|
|
69
|
+
readonly BusinessVolumeOperationTimeIncrease: "BUSINESS_VOLUME_OPERATION_TIME_INCREASE";
|
|
70
|
+
readonly BusinessVolumeChargingDeviceIncrease: "BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE";
|
|
71
|
+
readonly BusinessVolumeAreaIncrease: "BUSINESS_VOLUME_AREA_INCREASE";
|
|
72
|
+
readonly SocialCustomerEnergyConsumptionIncrease: "SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE";
|
|
73
|
+
readonly EnergyConsumingEquipmentIncrease: "ENERGY_CONSUMING_EQUIPMENT_INCREASE";
|
|
74
|
+
readonly AbnormalWeather: "ABNORMAL_WEATHER";
|
|
75
|
+
readonly Other: "OTHER";
|
|
76
|
+
};
|
|
77
|
+
export type ItemOverrunReasonEnum = typeof ItemOverrunReasonEnum[keyof typeof ItemOverrunReasonEnum];
|
package/dist/esm/models/item.js
CHANGED
|
@@ -17,3 +17,12 @@ export const ItemScenarioEnum = {
|
|
|
17
17
|
LeasingTenant: 'LEASING_TENANT',
|
|
18
18
|
PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
|
|
19
19
|
};
|
|
20
|
+
export const ItemOverrunReasonEnum = {
|
|
21
|
+
BusinessVolumeOperationTimeIncrease: 'BUSINESS_VOLUME_OPERATION_TIME_INCREASE',
|
|
22
|
+
BusinessVolumeChargingDeviceIncrease: 'BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE',
|
|
23
|
+
BusinessVolumeAreaIncrease: 'BUSINESS_VOLUME_AREA_INCREASE',
|
|
24
|
+
SocialCustomerEnergyConsumptionIncrease: 'SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE',
|
|
25
|
+
EnergyConsumingEquipmentIncrease: 'ENERGY_CONSUMING_EQUIPMENT_INCREASE',
|
|
26
|
+
AbnormalWeather: 'ABNORMAL_WEATHER',
|
|
27
|
+
Other: 'OTHER'
|
|
28
|
+
};
|
|
@@ -106,6 +106,18 @@ export interface EnergyCostAddRecordDTO {
|
|
|
106
106
|
* @memberof EnergyCostAddRecordDTO
|
|
107
107
|
*/
|
|
108
108
|
'totalVacantArea': number;
|
|
109
|
+
/**
|
|
110
|
+
* 超标原因
|
|
111
|
+
* @type {string}
|
|
112
|
+
* @memberof EnergyCostAddRecordDTO
|
|
113
|
+
*/
|
|
114
|
+
'overrunReason'?: EnergyCostAddRecordDTOOverrunReasonEnum;
|
|
115
|
+
/**
|
|
116
|
+
* 备注
|
|
117
|
+
* @type {string}
|
|
118
|
+
* @memberof EnergyCostAddRecordDTO
|
|
119
|
+
*/
|
|
120
|
+
'remark'?: string;
|
|
109
121
|
/**
|
|
110
122
|
* 附件
|
|
111
123
|
* @type {string}
|
|
@@ -136,3 +148,13 @@ export declare const EnergyCostAddRecordDTOPricingTypeEnum: {
|
|
|
136
148
|
readonly PeakValleyFlat: "PEAK_VALLEY_FLAT";
|
|
137
149
|
};
|
|
138
150
|
export type EnergyCostAddRecordDTOPricingTypeEnum = typeof EnergyCostAddRecordDTOPricingTypeEnum[keyof typeof EnergyCostAddRecordDTOPricingTypeEnum];
|
|
151
|
+
export declare const EnergyCostAddRecordDTOOverrunReasonEnum: {
|
|
152
|
+
readonly BusinessVolumeOperationTimeIncrease: "BUSINESS_VOLUME_OPERATION_TIME_INCREASE";
|
|
153
|
+
readonly BusinessVolumeChargingDeviceIncrease: "BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE";
|
|
154
|
+
readonly BusinessVolumeAreaIncrease: "BUSINESS_VOLUME_AREA_INCREASE";
|
|
155
|
+
readonly SocialCustomerEnergyConsumptionIncrease: "SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE";
|
|
156
|
+
readonly EnergyConsumingEquipmentIncrease: "ENERGY_CONSUMING_EQUIPMENT_INCREASE";
|
|
157
|
+
readonly AbnormalWeather: "ABNORMAL_WEATHER";
|
|
158
|
+
readonly Other: "OTHER";
|
|
159
|
+
};
|
|
160
|
+
export type EnergyCostAddRecordDTOOverrunReasonEnum = typeof EnergyCostAddRecordDTOOverrunReasonEnum[keyof typeof EnergyCostAddRecordDTOOverrunReasonEnum];
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.EnergyCostAddRecordDTOPricingTypeEnum = exports.EnergyCostAddRecordDTOBillSourceEnum = exports.EnergyCostAddRecordDTOEnergyTypeEnum = void 0;
|
|
16
|
+
exports.EnergyCostAddRecordDTOOverrunReasonEnum = exports.EnergyCostAddRecordDTOPricingTypeEnum = exports.EnergyCostAddRecordDTOBillSourceEnum = exports.EnergyCostAddRecordDTOEnergyTypeEnum = void 0;
|
|
17
17
|
exports.EnergyCostAddRecordDTOEnergyTypeEnum = {
|
|
18
18
|
Electric: 'ELECTRIC',
|
|
19
19
|
Water: 'WATER'
|
|
@@ -28,3 +28,12 @@ exports.EnergyCostAddRecordDTOPricingTypeEnum = {
|
|
|
28
28
|
UniformUnitPrice: 'UNIFORM_UNIT_PRICE',
|
|
29
29
|
PeakValleyFlat: 'PEAK_VALLEY_FLAT'
|
|
30
30
|
};
|
|
31
|
+
exports.EnergyCostAddRecordDTOOverrunReasonEnum = {
|
|
32
|
+
BusinessVolumeOperationTimeIncrease: 'BUSINESS_VOLUME_OPERATION_TIME_INCREASE',
|
|
33
|
+
BusinessVolumeChargingDeviceIncrease: 'BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE',
|
|
34
|
+
BusinessVolumeAreaIncrease: 'BUSINESS_VOLUME_AREA_INCREASE',
|
|
35
|
+
SocialCustomerEnergyConsumptionIncrease: 'SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE',
|
|
36
|
+
EnergyConsumingEquipmentIncrease: 'ENERGY_CONSUMING_EQUIPMENT_INCREASE',
|
|
37
|
+
AbnormalWeather: 'ABNORMAL_WEATHER',
|
|
38
|
+
Other: 'OTHER'
|
|
39
|
+
};
|
|
@@ -16,81 +16,87 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface EnergyCostMonthSettingListVO {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {
|
|
19
|
+
* ID
|
|
20
|
+
* @type {string}
|
|
21
21
|
* @memberof EnergyCostMonthSettingListVO
|
|
22
22
|
*/
|
|
23
|
-
'id'?:
|
|
23
|
+
'id'?: string;
|
|
24
24
|
/**
|
|
25
|
-
* 园区
|
|
26
|
-
* @type {
|
|
25
|
+
* 园区ID
|
|
26
|
+
* @type {string}
|
|
27
27
|
* @memberof EnergyCostMonthSettingListVO
|
|
28
28
|
*/
|
|
29
|
-
'parkId'?:
|
|
29
|
+
'parkId'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* 年月
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof EnergyCostMonthSettingListVO
|
|
34
|
+
*/
|
|
35
|
+
'yearMonths'?: string;
|
|
30
36
|
/**
|
|
31
37
|
* 能源类型
|
|
32
38
|
* @type {string}
|
|
33
39
|
* @memberof EnergyCostMonthSettingListVO
|
|
34
40
|
*/
|
|
35
|
-
'energyType'?:
|
|
41
|
+
'energyType'?: string;
|
|
36
42
|
/**
|
|
37
|
-
*
|
|
43
|
+
* 冷藏场景ID
|
|
38
44
|
* @type {string}
|
|
39
45
|
* @memberof EnergyCostMonthSettingListVO
|
|
40
46
|
*/
|
|
41
|
-
'
|
|
47
|
+
'csId'?: string;
|
|
42
48
|
/**
|
|
43
|
-
*
|
|
49
|
+
* 冷藏场景标准值
|
|
44
50
|
* @type {string}
|
|
45
51
|
* @memberof EnergyCostMonthSettingListVO
|
|
46
52
|
*/
|
|
47
|
-
'
|
|
53
|
+
'csStandardValue'?: string;
|
|
48
54
|
/**
|
|
49
|
-
*
|
|
55
|
+
* 智慧仓库场景ID
|
|
50
56
|
* @type {string}
|
|
51
57
|
* @memberof EnergyCostMonthSettingListVO
|
|
52
58
|
*/
|
|
53
|
-
'
|
|
59
|
+
'swId'?: string;
|
|
54
60
|
/**
|
|
55
|
-
*
|
|
61
|
+
* 智慧仓库标准值
|
|
56
62
|
* @type {string}
|
|
57
63
|
* @memberof EnergyCostMonthSettingListVO
|
|
58
64
|
*/
|
|
59
|
-
'
|
|
65
|
+
'swStandardValue'?: string;
|
|
66
|
+
/**
|
|
67
|
+
* 租赁租户场景ID
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof EnergyCostMonthSettingListVO
|
|
70
|
+
*/
|
|
71
|
+
'ltId'?: string;
|
|
72
|
+
/**
|
|
73
|
+
* 租赁租户标准值
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof EnergyCostMonthSettingListVO
|
|
76
|
+
*/
|
|
77
|
+
'ltStandardValue'?: string;
|
|
60
78
|
/**
|
|
61
|
-
*
|
|
79
|
+
* 私有传统仓库场景ID
|
|
62
80
|
* @type {string}
|
|
63
81
|
* @memberof EnergyCostMonthSettingListVO
|
|
64
82
|
*/
|
|
65
|
-
'
|
|
83
|
+
'pcwId'?: string;
|
|
66
84
|
/**
|
|
67
|
-
*
|
|
85
|
+
* 私有传统仓库标准值
|
|
68
86
|
* @type {string}
|
|
69
87
|
* @memberof EnergyCostMonthSettingListVO
|
|
70
88
|
*/
|
|
71
|
-
'
|
|
89
|
+
'pcwStandardValue'?: string;
|
|
72
90
|
/**
|
|
73
|
-
*
|
|
91
|
+
* 无场景类型(水)ID
|
|
74
92
|
* @type {string}
|
|
75
93
|
* @memberof EnergyCostMonthSettingListVO
|
|
76
94
|
*/
|
|
77
|
-
'
|
|
95
|
+
'waterId'?: string;
|
|
78
96
|
/**
|
|
79
|
-
*
|
|
97
|
+
* 无场景类型(水)标准值
|
|
80
98
|
* @type {string}
|
|
81
99
|
* @memberof EnergyCostMonthSettingListVO
|
|
82
100
|
*/
|
|
83
|
-
'
|
|
101
|
+
'waterStandardValue'?: string;
|
|
84
102
|
}
|
|
85
|
-
export declare const EnergyCostMonthSettingListVOEnergyTypeEnum: {
|
|
86
|
-
readonly Electric: "ELECTRIC";
|
|
87
|
-
readonly Water: "WATER";
|
|
88
|
-
};
|
|
89
|
-
export type EnergyCostMonthSettingListVOEnergyTypeEnum = typeof EnergyCostMonthSettingListVOEnergyTypeEnum[keyof typeof EnergyCostMonthSettingListVOEnergyTypeEnum];
|
|
90
|
-
export declare const EnergyCostMonthSettingListVOUsageScenariosTypeEnum: {
|
|
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 EnergyCostMonthSettingListVOUsageScenariosTypeEnum = typeof EnergyCostMonthSettingListVOUsageScenariosTypeEnum[keyof typeof EnergyCostMonthSettingListVOUsageScenariosTypeEnum];
|
|
@@ -13,14 +13,3 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.EnergyCostMonthSettingListVOUsageScenariosTypeEnum = exports.EnergyCostMonthSettingListVOEnergyTypeEnum = void 0;
|
|
17
|
-
exports.EnergyCostMonthSettingListVOEnergyTypeEnum = {
|
|
18
|
-
Electric: 'ELECTRIC',
|
|
19
|
-
Water: 'WATER'
|
|
20
|
-
};
|
|
21
|
-
exports.EnergyCostMonthSettingListVOUsageScenariosTypeEnum = {
|
|
22
|
-
ColdStorage: 'COLD_STORAGE',
|
|
23
|
-
SmartWarehouse: 'SMART_WAREHOUSE',
|
|
24
|
-
LeasingTenant: 'LEASING_TENANT',
|
|
25
|
-
PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
|
|
26
|
-
};
|
|
@@ -130,6 +130,36 @@ export interface EnergyCostRecordInfoVO {
|
|
|
130
130
|
* @memberof EnergyCostRecordInfoVO
|
|
131
131
|
*/
|
|
132
132
|
'costPerSquareMeter'?: number;
|
|
133
|
+
/**
|
|
134
|
+
* 标准值
|
|
135
|
+
* @type {number}
|
|
136
|
+
* @memberof EnergyCostRecordInfoVO
|
|
137
|
+
*/
|
|
138
|
+
'standardValue'?: number;
|
|
139
|
+
/**
|
|
140
|
+
* 是否超标 0未超标 1 超标
|
|
141
|
+
* @type {number}
|
|
142
|
+
* @memberof EnergyCostRecordInfoVO
|
|
143
|
+
*/
|
|
144
|
+
'isOverBudget'?: number;
|
|
145
|
+
/**
|
|
146
|
+
* 超标原因
|
|
147
|
+
* @type {string}
|
|
148
|
+
* @memberof EnergyCostRecordInfoVO
|
|
149
|
+
*/
|
|
150
|
+
'overrunReason'?: EnergyCostRecordInfoVOOverrunReasonEnum;
|
|
151
|
+
/**
|
|
152
|
+
* 备注
|
|
153
|
+
* @type {string}
|
|
154
|
+
* @memberof EnergyCostRecordInfoVO
|
|
155
|
+
*/
|
|
156
|
+
'remark'?: string;
|
|
157
|
+
/**
|
|
158
|
+
* 备注
|
|
159
|
+
* @type {string}
|
|
160
|
+
* @memberof EnergyCostRecordInfoVO
|
|
161
|
+
*/
|
|
162
|
+
'attachment'?: string;
|
|
133
163
|
/**
|
|
134
164
|
* 园区总面积
|
|
135
165
|
* @type {number}
|
|
@@ -190,3 +220,13 @@ export declare const EnergyCostRecordInfoVOBillSourceEnum: {
|
|
|
190
220
|
readonly WaterSupplyCompany: "WATER_SUPPLY_COMPANY";
|
|
191
221
|
};
|
|
192
222
|
export type EnergyCostRecordInfoVOBillSourceEnum = typeof EnergyCostRecordInfoVOBillSourceEnum[keyof typeof EnergyCostRecordInfoVOBillSourceEnum];
|
|
223
|
+
export declare const EnergyCostRecordInfoVOOverrunReasonEnum: {
|
|
224
|
+
readonly BusinessVolumeOperationTimeIncrease: "BUSINESS_VOLUME_OPERATION_TIME_INCREASE";
|
|
225
|
+
readonly BusinessVolumeChargingDeviceIncrease: "BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE";
|
|
226
|
+
readonly BusinessVolumeAreaIncrease: "BUSINESS_VOLUME_AREA_INCREASE";
|
|
227
|
+
readonly SocialCustomerEnergyConsumptionIncrease: "SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE";
|
|
228
|
+
readonly EnergyConsumingEquipmentIncrease: "ENERGY_CONSUMING_EQUIPMENT_INCREASE";
|
|
229
|
+
readonly AbnormalWeather: "ABNORMAL_WEATHER";
|
|
230
|
+
readonly Other: "OTHER";
|
|
231
|
+
};
|
|
232
|
+
export type EnergyCostRecordInfoVOOverrunReasonEnum = typeof EnergyCostRecordInfoVOOverrunReasonEnum[keyof typeof EnergyCostRecordInfoVOOverrunReasonEnum];
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.EnergyCostRecordInfoVOBillSourceEnum = exports.EnergyCostRecordInfoVOPricingTypeEnum = exports.EnergyCostRecordInfoVOEnergyTypeEnum = void 0;
|
|
16
|
+
exports.EnergyCostRecordInfoVOOverrunReasonEnum = exports.EnergyCostRecordInfoVOBillSourceEnum = exports.EnergyCostRecordInfoVOPricingTypeEnum = exports.EnergyCostRecordInfoVOEnergyTypeEnum = void 0;
|
|
17
17
|
exports.EnergyCostRecordInfoVOEnergyTypeEnum = {
|
|
18
18
|
Electric: 'ELECTRIC',
|
|
19
19
|
Water: 'WATER'
|
|
@@ -28,3 +28,12 @@ exports.EnergyCostRecordInfoVOBillSourceEnum = {
|
|
|
28
28
|
GroupEnergyRealEstate: 'GROUP_ENERGY_REAL_ESTATE',
|
|
29
29
|
WaterSupplyCompany: 'WATER_SUPPLY_COMPANY'
|
|
30
30
|
};
|
|
31
|
+
exports.EnergyCostRecordInfoVOOverrunReasonEnum = {
|
|
32
|
+
BusinessVolumeOperationTimeIncrease: 'BUSINESS_VOLUME_OPERATION_TIME_INCREASE',
|
|
33
|
+
BusinessVolumeChargingDeviceIncrease: 'BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE',
|
|
34
|
+
BusinessVolumeAreaIncrease: 'BUSINESS_VOLUME_AREA_INCREASE',
|
|
35
|
+
SocialCustomerEnergyConsumptionIncrease: 'SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE',
|
|
36
|
+
EnergyConsumingEquipmentIncrease: 'ENERGY_CONSUMING_EQUIPMENT_INCREASE',
|
|
37
|
+
AbnormalWeather: 'ABNORMAL_WEATHER',
|
|
38
|
+
Other: 'OTHER'
|
|
39
|
+
};
|
|
@@ -86,7 +86,7 @@ export interface EnergyCostScenariosInfoVO {
|
|
|
86
86
|
* @type {string}
|
|
87
87
|
* @memberof EnergyCostScenariosInfoVO
|
|
88
88
|
*/
|
|
89
|
-
'overrunReason'?:
|
|
89
|
+
'overrunReason'?: EnergyCostScenariosInfoVOOverrunReasonEnum;
|
|
90
90
|
/**
|
|
91
91
|
* 备注
|
|
92
92
|
* @type {string}
|
|
@@ -130,3 +130,13 @@ export declare const EnergyCostScenariosInfoVOUsageScenariosTypeEnum: {
|
|
|
130
130
|
readonly PrivateConventionalWarehouse: "PRIVATE_CONVENTIONAL_WAREHOUSE";
|
|
131
131
|
};
|
|
132
132
|
export type EnergyCostScenariosInfoVOUsageScenariosTypeEnum = typeof EnergyCostScenariosInfoVOUsageScenariosTypeEnum[keyof typeof EnergyCostScenariosInfoVOUsageScenariosTypeEnum];
|
|
133
|
+
export declare const EnergyCostScenariosInfoVOOverrunReasonEnum: {
|
|
134
|
+
readonly BusinessVolumeOperationTimeIncrease: "BUSINESS_VOLUME_OPERATION_TIME_INCREASE";
|
|
135
|
+
readonly BusinessVolumeChargingDeviceIncrease: "BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE";
|
|
136
|
+
readonly BusinessVolumeAreaIncrease: "BUSINESS_VOLUME_AREA_INCREASE";
|
|
137
|
+
readonly SocialCustomerEnergyConsumptionIncrease: "SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE";
|
|
138
|
+
readonly EnergyConsumingEquipmentIncrease: "ENERGY_CONSUMING_EQUIPMENT_INCREASE";
|
|
139
|
+
readonly AbnormalWeather: "ABNORMAL_WEATHER";
|
|
140
|
+
readonly Other: "OTHER";
|
|
141
|
+
};
|
|
142
|
+
export type EnergyCostScenariosInfoVOOverrunReasonEnum = typeof EnergyCostScenariosInfoVOOverrunReasonEnum[keyof typeof EnergyCostScenariosInfoVOOverrunReasonEnum];
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.EnergyCostScenariosInfoVOUsageScenariosTypeEnum = exports.EnergyCostScenariosInfoVOEnergyTypeEnum = void 0;
|
|
16
|
+
exports.EnergyCostScenariosInfoVOOverrunReasonEnum = exports.EnergyCostScenariosInfoVOUsageScenariosTypeEnum = exports.EnergyCostScenariosInfoVOEnergyTypeEnum = void 0;
|
|
17
17
|
exports.EnergyCostScenariosInfoVOEnergyTypeEnum = {
|
|
18
18
|
Electric: 'ELECTRIC',
|
|
19
19
|
Water: 'WATER'
|
|
@@ -24,3 +24,12 @@ exports.EnergyCostScenariosInfoVOUsageScenariosTypeEnum = {
|
|
|
24
24
|
LeasingTenant: 'LEASING_TENANT',
|
|
25
25
|
PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
|
|
26
26
|
};
|
|
27
|
+
exports.EnergyCostScenariosInfoVOOverrunReasonEnum = {
|
|
28
|
+
BusinessVolumeOperationTimeIncrease: 'BUSINESS_VOLUME_OPERATION_TIME_INCREASE',
|
|
29
|
+
BusinessVolumeChargingDeviceIncrease: 'BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE',
|
|
30
|
+
BusinessVolumeAreaIncrease: 'BUSINESS_VOLUME_AREA_INCREASE',
|
|
31
|
+
SocialCustomerEnergyConsumptionIncrease: 'SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE',
|
|
32
|
+
EnergyConsumingEquipmentIncrease: 'ENERGY_CONSUMING_EQUIPMENT_INCREASE',
|
|
33
|
+
AbnormalWeather: 'ABNORMAL_WEATHER',
|
|
34
|
+
Other: 'OTHER'
|
|
35
|
+
};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -106,7 +106,6 @@ export * from './disaster-warning-standard-import-dto';
|
|
|
106
106
|
export * from './emission-standard-enum';
|
|
107
107
|
export * from './energy-cost-add-record-dto';
|
|
108
108
|
export * from './energy-cost-add-setting-dto';
|
|
109
|
-
export * from './energy-cost-confirm-record-dto';
|
|
110
109
|
export * from './energy-cost-month-setting-list-vo';
|
|
111
110
|
export * from './energy-cost-record-info-vo';
|
|
112
111
|
export * from './energy-cost-scenarios-info-vo';
|
package/dist/models/index.js
CHANGED
|
@@ -122,7 +122,6 @@ __exportStar(require("./disaster-warning-standard-import-dto"), exports);
|
|
|
122
122
|
__exportStar(require("./emission-standard-enum"), exports);
|
|
123
123
|
__exportStar(require("./energy-cost-add-record-dto"), exports);
|
|
124
124
|
__exportStar(require("./energy-cost-add-setting-dto"), exports);
|
|
125
|
-
__exportStar(require("./energy-cost-confirm-record-dto"), exports);
|
|
126
125
|
__exportStar(require("./energy-cost-month-setting-list-vo"), exports);
|
|
127
126
|
__exportStar(require("./energy-cost-record-info-vo"), exports);
|
|
128
127
|
__exportStar(require("./energy-cost-scenarios-info-vo"), exports);
|