Commit 24f45ea318abba2eecde52bc871f1c42f33a0920
1 parent
fd984f25
commit
Showing
1 changed file
with
2 additions
and
1 deletions
src/main/java/com/zteits/irain/portal/web/govclouds/ParkingContrailController.java
... | ... | @@ -264,7 +264,8 @@ public class ParkingContrailController extends BizController{ |
264 | 264 | if(pdaList.isSuccess() && CollectionUtil.isNotEmpty(pdaList.getData())){ |
265 | 265 | pdaList.getData().forEach(pda->{ |
266 | 266 | ParkingDeviceVO device = new ParkingDeviceVO(); |
267 | - device.setType(pda.getEqpType()); | |
267 | + //device.setType(pda.getEqpType()); | |
268 | + device.setType(9);//PDA类型暂时设置为 9 | |
268 | 269 | device.setAllCount(pda.getAllEqpCount()); |
269 | 270 | device.setOnlineCount(pda.getOnlineEqpCount()); |
270 | 271 | deviceVoList.add(device); | ... | ... |