新增设备类型能量管理设备
This commit is contained in:
parent
6c8637b910
commit
91f006c72a
@ -13,4 +13,9 @@ public interface EquipmentTypeIds {
|
|||||||
* Wind Turbine Generator
|
* Wind Turbine Generator
|
||||||
*/
|
*/
|
||||||
Integer EQUIPMENT_TYPE_STATION_WTG = 10002;
|
Integer EQUIPMENT_TYPE_STATION_WTG = 10002;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 能量管理设备
|
||||||
|
*/
|
||||||
|
Integer EQUIPMENT_TYPE_PM = 10003;
|
||||||
}
|
}
|
||||||
|
@ -47,6 +47,7 @@ public class EquipmentController {
|
|||||||
List<EquipmentTypeVo> typeVoList= new ArrayList<>();
|
List<EquipmentTypeVo> typeVoList= new ArrayList<>();
|
||||||
typeVoList.add(new EquipmentTypeVo(EquipmentTypeIds.EQUIPMENT_TYPE_WIND_FARM,"风电场"));
|
typeVoList.add(new EquipmentTypeVo(EquipmentTypeIds.EQUIPMENT_TYPE_WIND_FARM,"风电场"));
|
||||||
typeVoList.add(new EquipmentTypeVo(EquipmentTypeIds.EQUIPMENT_TYPE_STATION_WTG,"机组"));
|
typeVoList.add(new EquipmentTypeVo(EquipmentTypeIds.EQUIPMENT_TYPE_STATION_WTG,"机组"));
|
||||||
|
typeVoList.add(new EquipmentTypeVo(EquipmentTypeIds.EQUIPMENT_TYPE_PM,"能量管理设备"));
|
||||||
|
|
||||||
return R.success(typeVoList);
|
return R.success(typeVoList);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user