车辆管理
This commit is contained in:
@ -41,7 +41,6 @@ public class VehVehicleTripAppController extends BaseController {
|
||||
return vehicleTripService.queryPageList(req, pageQuery);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 查询当前用户车辆出行记录列表
|
||||
*/
|
||||
@ -81,6 +80,16 @@ public class VehVehicleTripAppController extends BaseController {
|
||||
return toAjax(vehicleTripService.updateByBo(req));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改车辆出行记录状态
|
||||
*/
|
||||
@Log(title = "车辆出行记录", businessType = BusinessType.UPDATE)
|
||||
@RepeatSubmit()
|
||||
@PutMapping("/changeStatus")
|
||||
public R<Void> changeStatus(@Validated @RequestBody VehVehicleTripChangeStatusReq req) {
|
||||
return toAjax(vehicleTripService.changeStatus(req));
|
||||
}
|
||||
|
||||
/**
|
||||
* 取消车辆出行记录
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user