From 1dc6010bedc68ccff48d0e9ba7139ad153b89a3c Mon Sep 17 00:00:00 2001 From: xiejp Date: Tue, 5 Sep 2017 16:43:24 +0800 Subject: [PATCH] 停车场 --- src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/parklotmanage/ParkLotManageController.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/parklotmanage/ParkLotManageController.java b/src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/parklotmanage/ParkLotManageController.java index c85e6f5..864caec 100644 --- a/src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/parklotmanage/ParkLotManageController.java +++ b/src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/parklotmanage/ParkLotManageController.java @@ -166,7 +166,7 @@ public class ParkLotManageController extends BizController{ */ @ApiOperation("修改停车场信息") @PostMapping("/updateParkingLotInfo") - public BizResultVO UpdateParkingLotInfo(@RequestBody ParkingLotInfoUpdateRequest request){ + public BizResultVO UpdateParkingLotInfo(@RequestBody ParkingLotInfoSaveRequest request){ logger.info("调用修改停车场信息dubbo服务入参:request={}"+JSONObject.toJSONString(request)); BizResult bizResult = parkingLotService.UpdateParkingLotInfo(request); return new BizResultVO(bizResult); @@ -189,10 +189,10 @@ public class ParkLotManageController extends BizController{ * @return */ @ApiOperation("删除停车场信息") - @PostMapping("/deleteParkingLotInfoByPlIds") - public BizResultVO DeleteParkingLotInfoByPlIds(@RequestBody ParkingLotInfoDeleteRequest request){ + @PostMapping("/deleteParkingLotInfoByPlNos") + public BizResultVO DeleteParkingLotInfoByPlNos(@RequestBody ParkingLotInfoDeleteRequest request){ logger.info("调用删除停车场信息dubbo服务入参:request={}"+JSONObject.toJSONString(request)); - BizResult bizResult = parkingLotService.DeleteParkingLotInfoByPlIds(request); + BizResult bizResult = parkingLotService.DeleteParkingLotInfoByPlNos(request); return new BizResultVO(bizResult); } /** -- libgit2 0.21.4