@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.
Files changed (43) hide show
  1. package/.openapi-generator/FILES +0 -1
  2. package/apis/energy-cost-controller-api.ts +199 -178
  3. package/dist/apis/energy-cost-controller-api.d.ts +113 -98
  4. package/dist/apis/energy-cost-controller-api.js +154 -140
  5. package/dist/esm/apis/energy-cost-controller-api.d.ts +113 -98
  6. package/dist/esm/apis/energy-cost-controller-api.js +153 -139
  7. package/dist/esm/models/energy-cost-add-record-dto.d.ts +22 -0
  8. package/dist/esm/models/energy-cost-add-record-dto.js +9 -0
  9. package/dist/esm/models/energy-cost-month-setting-list-vo.d.ts +41 -35
  10. package/dist/esm/models/energy-cost-month-setting-list-vo.js +1 -10
  11. package/dist/esm/models/energy-cost-record-info-vo.d.ts +40 -0
  12. package/dist/esm/models/energy-cost-record-info-vo.js +9 -0
  13. package/dist/esm/models/energy-cost-scenarios-info-vo.d.ts +11 -1
  14. package/dist/esm/models/energy-cost-scenarios-info-vo.js +9 -0
  15. package/dist/esm/models/index.d.ts +0 -1
  16. package/dist/esm/models/index.js +0 -1
  17. package/dist/esm/models/item.d.ts +22 -0
  18. package/dist/esm/models/item.js +9 -0
  19. package/dist/models/energy-cost-add-record-dto.d.ts +22 -0
  20. package/dist/models/energy-cost-add-record-dto.js +10 -1
  21. package/dist/models/energy-cost-month-setting-list-vo.d.ts +41 -35
  22. package/dist/models/energy-cost-month-setting-list-vo.js +0 -11
  23. package/dist/models/energy-cost-record-info-vo.d.ts +40 -0
  24. package/dist/models/energy-cost-record-info-vo.js +10 -1
  25. package/dist/models/energy-cost-scenarios-info-vo.d.ts +11 -1
  26. package/dist/models/energy-cost-scenarios-info-vo.js +10 -1
  27. package/dist/models/index.d.ts +0 -1
  28. package/dist/models/index.js +0 -1
  29. package/dist/models/item.d.ts +22 -0
  30. package/dist/models/item.js +10 -1
  31. package/models/energy-cost-add-record-dto.ts +23 -0
  32. package/models/energy-cost-month-setting-list-vo.ts +41 -39
  33. package/models/energy-cost-record-info-vo.ts +41 -0
  34. package/models/energy-cost-scenarios-info-vo.ts +12 -1
  35. package/models/index.ts +0 -1
  36. package/models/item.ts +23 -0
  37. package/ossutil.log +1050 -1047
  38. package/package.json +1 -1
  39. package/dist/esm/models/energy-cost-confirm-record-dto.d.ts +0 -42
  40. package/dist/esm/models/energy-cost-confirm-record-dto.js +0 -17
  41. package/dist/models/energy-cost-confirm-record-dto.d.ts +0 -42
  42. package/dist/models/energy-cost-confirm-record-dto.js +0 -20
  43. package/models/energy-cost-confirm-record-dto.ts +0 -53
@@ -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];
@@ -13,10 +13,19 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.ItemScenarioEnum = void 0;
16
+ exports.ItemOverrunReasonEnum = exports.ItemScenarioEnum = void 0;
17
17
  exports.ItemScenarioEnum = {
18
18
  ColdStorage: 'COLD_STORAGE',
19
19
  SmartWarehouse: 'SMART_WAREHOUSE',
20
20
  LeasingTenant: 'LEASING_TENANT',
21
21
  PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
22
22
  };
23
+ exports.ItemOverrunReasonEnum = {
24
+ BusinessVolumeOperationTimeIncrease: 'BUSINESS_VOLUME_OPERATION_TIME_INCREASE',
25
+ BusinessVolumeChargingDeviceIncrease: 'BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE',
26
+ BusinessVolumeAreaIncrease: 'BUSINESS_VOLUME_AREA_INCREASE',
27
+ SocialCustomerEnergyConsumptionIncrease: 'SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE',
28
+ EnergyConsumingEquipmentIncrease: 'ENERGY_CONSUMING_EQUIPMENT_INCREASE',
29
+ AbnormalWeather: 'ABNORMAL_WEATHER',
30
+ Other: 'OTHER'
31
+ };
@@ -113,6 +113,18 @@ export interface EnergyCostAddRecordDTO {
113
113
  * @memberof EnergyCostAddRecordDTO
114
114
  */
115
115
  'totalVacantArea': number;
116
+ /**
117
+ * 超标原因
118
+ * @type {string}
119
+ * @memberof EnergyCostAddRecordDTO
120
+ */
121
+ 'overrunReason'?: EnergyCostAddRecordDTOOverrunReasonEnum;
122
+ /**
123
+ * 备注
124
+ * @type {string}
125
+ * @memberof EnergyCostAddRecordDTO
126
+ */
127
+ 'remark'?: string;
116
128
  /**
117
129
  * 附件
118
130
  * @type {string}
@@ -147,5 +159,16 @@ export const EnergyCostAddRecordDTOPricingTypeEnum = {
147
159
  } as const;
148
160
 
149
161
  export type EnergyCostAddRecordDTOPricingTypeEnum = typeof EnergyCostAddRecordDTOPricingTypeEnum[keyof typeof EnergyCostAddRecordDTOPricingTypeEnum];
162
+ export const EnergyCostAddRecordDTOOverrunReasonEnum = {
163
+ BusinessVolumeOperationTimeIncrease: 'BUSINESS_VOLUME_OPERATION_TIME_INCREASE',
164
+ BusinessVolumeChargingDeviceIncrease: 'BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE',
165
+ BusinessVolumeAreaIncrease: 'BUSINESS_VOLUME_AREA_INCREASE',
166
+ SocialCustomerEnergyConsumptionIncrease: 'SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE',
167
+ EnergyConsumingEquipmentIncrease: 'ENERGY_CONSUMING_EQUIPMENT_INCREASE',
168
+ AbnormalWeather: 'ABNORMAL_WEATHER',
169
+ Other: 'OTHER'
170
+ } as const;
171
+
172
+ export type EnergyCostAddRecordDTOOverrunReasonEnum = typeof EnergyCostAddRecordDTOOverrunReasonEnum[keyof typeof EnergyCostAddRecordDTOOverrunReasonEnum];
150
173
 
151
174
 
@@ -21,86 +21,88 @@
21
21
  */
22
22
  export interface EnergyCostMonthSettingListVO {
23
23
  /**
24
- *
25
- * @type {number}
24
+ * ID
25
+ * @type {string}
26
26
  * @memberof EnergyCostMonthSettingListVO
27
27
  */
28
- 'id'?: number;
28
+ 'id'?: string;
29
29
  /**
30
- * 园区id
31
- * @type {number}
30
+ * 园区ID
31
+ * @type {string}
32
32
  * @memberof EnergyCostMonthSettingListVO
33
33
  */
34
- 'parkId'?: number;
34
+ 'parkId'?: string;
35
+ /**
36
+ * 年月
37
+ * @type {string}
38
+ * @memberof EnergyCostMonthSettingListVO
39
+ */
40
+ 'yearMonths'?: string;
35
41
  /**
36
42
  * 能源类型
37
43
  * @type {string}
38
44
  * @memberof EnergyCostMonthSettingListVO
39
45
  */
40
- 'energyType'?: EnergyCostMonthSettingListVOEnergyTypeEnum;
46
+ 'energyType'?: string;
41
47
  /**
42
- * 能源类型单位
48
+ * 冷藏场景ID
43
49
  * @type {string}
44
50
  * @memberof EnergyCostMonthSettingListVO
45
51
  */
46
- 'energyTypeUnit'?: string;
52
+ 'csId'?: string;
47
53
  /**
48
- * 使用场景
54
+ * 冷藏场景标准值
49
55
  * @type {string}
50
56
  * @memberof EnergyCostMonthSettingListVO
51
57
  */
52
- 'usageScenariosType'?: EnergyCostMonthSettingListVOUsageScenariosTypeEnum;
58
+ 'csStandardValue'?: string;
53
59
  /**
54
- * 标准值
60
+ * 智慧仓库场景ID
55
61
  * @type {string}
56
62
  * @memberof EnergyCostMonthSettingListVO
57
63
  */
58
- 'standardValue'?: string;
64
+ 'swId'?: string;
59
65
  /**
60
- * 年月
66
+ * 智慧仓库标准值
61
67
  * @type {string}
62
68
  * @memberof EnergyCostMonthSettingListVO
63
69
  */
64
- 'yearMonths'?: string;
70
+ 'swStandardValue'?: string;
71
+ /**
72
+ * 租赁租户场景ID
73
+ * @type {string}
74
+ * @memberof EnergyCostMonthSettingListVO
75
+ */
76
+ 'ltId'?: string;
65
77
  /**
66
- *
78
+ * 租赁租户标准值
67
79
  * @type {string}
68
80
  * @memberof EnergyCostMonthSettingListVO
69
81
  */
70
- 'year'?: string;
82
+ 'ltStandardValue'?: string;
71
83
  /**
72
- *
84
+ * 私有传统仓库场景ID
73
85
  * @type {string}
74
86
  * @memberof EnergyCostMonthSettingListVO
75
87
  */
76
- 'month'?: string;
88
+ 'pcwId'?: string;
77
89
  /**
78
- * 创建时间
90
+ * 私有传统仓库标准值
79
91
  * @type {string}
80
92
  * @memberof EnergyCostMonthSettingListVO
81
93
  */
82
- 'createTime'?: string;
94
+ 'pcwStandardValue'?: string;
83
95
  /**
84
- * 更新时间
96
+ * 无场景类型(水)ID
85
97
  * @type {string}
86
98
  * @memberof EnergyCostMonthSettingListVO
87
99
  */
88
- 'updateTime'?: string;
100
+ 'waterId'?: string;
101
+ /**
102
+ * 无场景类型(水)标准值
103
+ * @type {string}
104
+ * @memberof EnergyCostMonthSettingListVO
105
+ */
106
+ 'waterStandardValue'?: string;
89
107
  }
90
108
 
91
- export const EnergyCostMonthSettingListVOEnergyTypeEnum = {
92
- Electric: 'ELECTRIC',
93
- Water: 'WATER'
94
- } as const;
95
-
96
- export type EnergyCostMonthSettingListVOEnergyTypeEnum = typeof EnergyCostMonthSettingListVOEnergyTypeEnum[keyof typeof EnergyCostMonthSettingListVOEnergyTypeEnum];
97
- export const EnergyCostMonthSettingListVOUsageScenariosTypeEnum = {
98
- ColdStorage: 'COLD_STORAGE',
99
- SmartWarehouse: 'SMART_WAREHOUSE',
100
- LeasingTenant: 'LEASING_TENANT',
101
- PrivateConventionalWarehouse: 'PRIVATE_CONVENTIONAL_WAREHOUSE'
102
- } as const;
103
-
104
- export type EnergyCostMonthSettingListVOUsageScenariosTypeEnum = typeof EnergyCostMonthSettingListVOUsageScenariosTypeEnum[keyof typeof EnergyCostMonthSettingListVOUsageScenariosTypeEnum];
105
-
106
-
@@ -137,6 +137,36 @@ export interface EnergyCostRecordInfoVO {
137
137
  * @memberof EnergyCostRecordInfoVO
138
138
  */
139
139
  'costPerSquareMeter'?: number;
140
+ /**
141
+ * 标准值
142
+ * @type {number}
143
+ * @memberof EnergyCostRecordInfoVO
144
+ */
145
+ 'standardValue'?: number;
146
+ /**
147
+ * 是否超标 0未超标 1 超标
148
+ * @type {number}
149
+ * @memberof EnergyCostRecordInfoVO
150
+ */
151
+ 'isOverBudget'?: number;
152
+ /**
153
+ * 超标原因
154
+ * @type {string}
155
+ * @memberof EnergyCostRecordInfoVO
156
+ */
157
+ 'overrunReason'?: EnergyCostRecordInfoVOOverrunReasonEnum;
158
+ /**
159
+ * 备注
160
+ * @type {string}
161
+ * @memberof EnergyCostRecordInfoVO
162
+ */
163
+ 'remark'?: string;
164
+ /**
165
+ * 备注
166
+ * @type {string}
167
+ * @memberof EnergyCostRecordInfoVO
168
+ */
169
+ 'attachment'?: string;
140
170
  /**
141
171
  * 园区总面积
142
172
  * @type {number}
@@ -201,5 +231,16 @@ export const EnergyCostRecordInfoVOBillSourceEnum = {
201
231
  } as const;
202
232
 
203
233
  export type EnergyCostRecordInfoVOBillSourceEnum = typeof EnergyCostRecordInfoVOBillSourceEnum[keyof typeof EnergyCostRecordInfoVOBillSourceEnum];
234
+ export const EnergyCostRecordInfoVOOverrunReasonEnum = {
235
+ BusinessVolumeOperationTimeIncrease: 'BUSINESS_VOLUME_OPERATION_TIME_INCREASE',
236
+ BusinessVolumeChargingDeviceIncrease: 'BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE',
237
+ BusinessVolumeAreaIncrease: 'BUSINESS_VOLUME_AREA_INCREASE',
238
+ SocialCustomerEnergyConsumptionIncrease: 'SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE',
239
+ EnergyConsumingEquipmentIncrease: 'ENERGY_CONSUMING_EQUIPMENT_INCREASE',
240
+ AbnormalWeather: 'ABNORMAL_WEATHER',
241
+ Other: 'OTHER'
242
+ } as const;
243
+
244
+ export type EnergyCostRecordInfoVOOverrunReasonEnum = typeof EnergyCostRecordInfoVOOverrunReasonEnum[keyof typeof EnergyCostRecordInfoVOOverrunReasonEnum];
204
245
 
205
246
 
@@ -91,7 +91,7 @@ export interface EnergyCostScenariosInfoVO {
91
91
  * @type {string}
92
92
  * @memberof EnergyCostScenariosInfoVO
93
93
  */
94
- 'overrunReason'?: string;
94
+ 'overrunReason'?: EnergyCostScenariosInfoVOOverrunReasonEnum;
95
95
  /**
96
96
  * 备注
97
97
  * @type {string}
@@ -138,5 +138,16 @@ export const EnergyCostScenariosInfoVOUsageScenariosTypeEnum = {
138
138
  } as const;
139
139
 
140
140
  export type EnergyCostScenariosInfoVOUsageScenariosTypeEnum = typeof EnergyCostScenariosInfoVOUsageScenariosTypeEnum[keyof typeof EnergyCostScenariosInfoVOUsageScenariosTypeEnum];
141
+ export const EnergyCostScenariosInfoVOOverrunReasonEnum = {
142
+ BusinessVolumeOperationTimeIncrease: 'BUSINESS_VOLUME_OPERATION_TIME_INCREASE',
143
+ BusinessVolumeChargingDeviceIncrease: 'BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE',
144
+ BusinessVolumeAreaIncrease: 'BUSINESS_VOLUME_AREA_INCREASE',
145
+ SocialCustomerEnergyConsumptionIncrease: 'SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE',
146
+ EnergyConsumingEquipmentIncrease: 'ENERGY_CONSUMING_EQUIPMENT_INCREASE',
147
+ AbnormalWeather: 'ABNORMAL_WEATHER',
148
+ Other: 'OTHER'
149
+ } as const;
150
+
151
+ export type EnergyCostScenariosInfoVOOverrunReasonEnum = typeof EnergyCostScenariosInfoVOOverrunReasonEnum[keyof typeof EnergyCostScenariosInfoVOOverrunReasonEnum];
141
152
 
142
153
 
package/models/index.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/models/item.ts CHANGED
@@ -44,6 +44,18 @@ export interface Item {
44
44
  * @memberof Item
45
45
  */
46
46
  'cost': number;
47
+ /**
48
+ * 超标原因
49
+ * @type {string}
50
+ * @memberof Item
51
+ */
52
+ 'overrunReason'?: ItemOverrunReasonEnum;
53
+ /**
54
+ * 备注
55
+ * @type {string}
56
+ * @memberof Item
57
+ */
58
+ 'remark'?: string;
47
59
  /**
48
60
  * 附件
49
61
  * @type {string}
@@ -60,5 +72,16 @@ export const ItemScenarioEnum = {
60
72
  } as const;
61
73
 
62
74
  export type ItemScenarioEnum = typeof ItemScenarioEnum[keyof typeof ItemScenarioEnum];
75
+ export const ItemOverrunReasonEnum = {
76
+ BusinessVolumeOperationTimeIncrease: 'BUSINESS_VOLUME_OPERATION_TIME_INCREASE',
77
+ BusinessVolumeChargingDeviceIncrease: 'BUSINESS_VOLUME_CHARGING_DEVICE_INCREASE',
78
+ BusinessVolumeAreaIncrease: 'BUSINESS_VOLUME_AREA_INCREASE',
79
+ SocialCustomerEnergyConsumptionIncrease: 'SOCIAL_CUSTOMER_ENERGY_CONSUMPTION_INCREASE',
80
+ EnergyConsumingEquipmentIncrease: 'ENERGY_CONSUMING_EQUIPMENT_INCREASE',
81
+ AbnormalWeather: 'ABNORMAL_WEATHER',
82
+ Other: 'OTHER'
83
+ } as const;
84
+
85
+ export type ItemOverrunReasonEnum = typeof ItemOverrunReasonEnum[keyof typeof ItemOverrunReasonEnum];
63
86
 
64
87