Commit 1dc6010bedc68ccff48d0e9ba7139ad153b89a3c

Authored by xiejp
1 parent 073f81af

停车场

src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/parklotmanage/ParkLotManageController.java
... ... @@ -166,7 +166,7 @@ public class ParkLotManageController extends BizController{
166 166 */
167 167 @ApiOperation("修改停车场信息")
168 168 @PostMapping("/updateParkingLotInfo")
169   - public BizResultVO<Boolean> UpdateParkingLotInfo(@RequestBody ParkingLotInfoUpdateRequest request){
  169 + public BizResultVO<Boolean> UpdateParkingLotInfo(@RequestBody ParkingLotInfoSaveRequest request){
170 170 logger.info("调用修改停车场信息dubbo服务入参:request={}"+JSONObject.toJSONString(request));
171 171 BizResult<Boolean> bizResult = parkingLotService.UpdateParkingLotInfo(request);
172 172 return new BizResultVO<Boolean>(bizResult);
... ... @@ -189,10 +189,10 @@ public class ParkLotManageController extends BizController{
189 189 * @return
190 190 */
191 191 @ApiOperation("删除停车场信息")
192   - @PostMapping("/deleteParkingLotInfoByPlIds")
193   - public BizResultVO<Boolean> DeleteParkingLotInfoByPlIds(@RequestBody ParkingLotInfoDeleteRequest request){
  192 + @PostMapping("/deleteParkingLotInfoByPlNos")
  193 + public BizResultVO<Boolean> DeleteParkingLotInfoByPlNos(@RequestBody ParkingLotInfoDeleteRequest request){
194 194 logger.info("调用删除停车场信息dubbo服务入参:request={}"+JSONObject.toJSONString(request));
195   - BizResult<Boolean> bizResult = parkingLotService.DeleteParkingLotInfoByPlIds(request);
  195 + BizResult<Boolean> bizResult = parkingLotService.DeleteParkingLotInfoByPlNos(request);
196 196 return new BizResultVO<Boolean>(bizResult);
197 197 }
198 198 /**
... ...