Commit 1a8aa8373daa719dd910baecea4c688c3c8a1e20
1 parent
8d603df9
停车场管理
Showing
1 changed file
with
4 additions
and
2 deletions
src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/parklotmanage/ParkLotManageController.java
| ... | ... | @@ -214,7 +214,7 @@ public class ParkLotManageController extends BizController{ |
| 214 | 214 | queryParking.setPlType(plType); |
| 215 | 215 | BizResult<PageBean<ParkingLotDTO>> bizResult = parkingLotQueryService.queryParkingLotByPark(queryParking,0,0); |
| 216 | 216 | |
| 217 | - String[] title = new String[]{"停车场编号","停车场名称"}; | |
| 217 | + String[] title = new String[]{"停车场编号","停车场名称","块名称","区间数","泊位数"}; | |
| 218 | 218 | String sheetName="停车场"; |
| 219 | 219 | String fileName = "停车场信息"; |
| 220 | 220 | // 1.创建excel信息 |
| ... | ... | @@ -230,7 +230,9 @@ public class ParkLotManageController extends BizController{ |
| 230 | 230 | int index=0; |
| 231 | 231 | obj[index++]=e.getPlNo(); |
| 232 | 232 | obj[index++]=e.getPlName(); |
| 233 | - | |
| 233 | + obj[index++]=e.getPlAreaBlockName(); | |
| 234 | + obj[index++]=e.getParkAreaNum(); | |
| 235 | + obj[index++]=e.getBerthNum(); | |
| 234 | 236 | contentList.add(obj); |
| 235 | 237 | } |
| 236 | 238 | } | ... | ... |