|
@@ -772,7 +772,7 @@ public class CarbonServiceImpl implements CarbonService {
|
|
|
@Override
|
|
|
public ReturnMsg getEnergyAnalysisWater(IocParam iocParam) {
|
|
|
List<Cake> list = new ArrayList<>();
|
|
|
- list.add(new Cake("office"));
|
|
|
+ list.add(new Cake("办公区"));
|
|
|
list.add(new Cake("信息机房"));
|
|
|
list.add(new Cake("餐厅"));
|
|
|
list.add(new Cake("停车场"));
|
|
@@ -794,11 +794,11 @@ public class CarbonServiceImpl implements CarbonService {
|
|
|
@Override
|
|
|
public ReturnMsg getEnergyAnalysisPower(IocParam iocParam) {
|
|
|
List<Cake> list = new ArrayList<>();
|
|
|
- list.add(new Cake("computerRoom"));
|
|
|
- list.add(new Cake("socket"));
|
|
|
- list.add(new Cake("lighting"));
|
|
|
- list.add(new Cake("airConditioner"));
|
|
|
- list.add(new Cake("qita"));
|
|
|
+ list.add(new Cake("信息机房"));
|
|
|
+ list.add(new Cake("插座"));
|
|
|
+ list.add(new Cake("照明"));
|
|
|
+ list.add(new Cake("空调"));
|
|
|
+ list.add(new Cake("其他"));
|
|
|
return ReturnMsg.ok(list);
|
|
|
}
|
|
|
|
|
@@ -806,11 +806,11 @@ public class CarbonServiceImpl implements CarbonService {
|
|
|
public ReturnMsg getEnergyAnalysisHot(IocParam iocParam) {
|
|
|
List<Cake> list = new ArrayList<>();
|
|
|
System.out.println(list);
|
|
|
- list.add(new Cake("computerRoom"));
|
|
|
- list.add(new Cake("parking"));
|
|
|
- list.add(new Cake("restaurant"));
|
|
|
- list.add(new Cake("office"));
|
|
|
- list.add(new Cake("qita"));
|
|
|
+ list.add(new Cake("信息机房"));
|
|
|
+ list.add(new Cake("停车场"));
|
|
|
+ list.add(new Cake("餐厅"));
|
|
|
+ list.add(new Cake("办公区"));
|
|
|
+ list.add(new Cake("其他"));
|
|
|
return ReturnMsg.ok(list);
|
|
|
}
|
|
|
|