Commit fca055a4 authored by 周健威's avatar 周健威

修改代码

parent fcd5017e
...@@ -95,6 +95,7 @@ public class RentVehicleController extends BaseController<VehicleBiz> implements ...@@ -95,6 +95,7 @@ public class RentVehicleController extends BaseController<VehicleBiz> implements
*/ */
@RequestMapping(value = "/rent/unbook/{bookRecordId}", method = RequestMethod.DELETE) @RequestMapping(value = "/rent/unbook/{bookRecordId}", method = RequestMethod.DELETE)
@ApiOperation(value = "取消预定车辆") @ApiOperation(value = "取消预定车辆")
@IgnoreUserToken
public RestResponse<Integer> rentUnbookVehicle(@PathVariable Long bookRecordId) throws Exception { public RestResponse<Integer> rentUnbookVehicle(@PathVariable Long bookRecordId) throws Exception {
//默认USER_APP 预约 //默认USER_APP 预约
Integer operatorId = USER_APP; Integer operatorId = USER_APP;
...@@ -110,6 +111,7 @@ public class RentVehicleController extends BaseController<VehicleBiz> implements ...@@ -110,6 +111,7 @@ public class RentVehicleController extends BaseController<VehicleBiz> implements
*/ */
@RequestMapping(value = "/rent/book/prove/{bookRecordId}", method = RequestMethod.PUT) @RequestMapping(value = "/rent/book/prove/{bookRecordId}", method = RequestMethod.PUT)
@ApiOperation(value = "预定车辆审核通过") @ApiOperation(value = "预定车辆审核通过")
@IgnoreUserToken
public RestResponse<Integer> rentProveVehicleBooking(@PathVariable Long bookRecordId) throws Exception { public RestResponse<Integer> rentProveVehicleBooking(@PathVariable Long bookRecordId) throws Exception {
//默认USER_APP 预约 //默认USER_APP 预约
Integer operatorId = USER_APP; Integer operatorId = USER_APP;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment