|
@@ -40,7 +40,7 @@ public class TblCarInfoController extends BaseController {
|
|
|
/**
|
|
/**
|
|
|
* 查询车辆信息列表
|
|
* 查询车辆信息列表
|
|
|
*/
|
|
*/
|
|
|
- @SaCheckPermission("system:carInfo:list")
|
|
|
|
|
|
|
+ //@SaCheckPermission("system:carInfo:list")
|
|
|
@GetMapping("/list")
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo<TblCarInfoVo> list(TblCarInfoBo bo, PageQuery pageQuery) {
|
|
public TableDataInfo<TblCarInfoVo> list(TblCarInfoBo bo, PageQuery pageQuery) {
|
|
|
return tblCarInfoService.queryPageList(bo, pageQuery);
|
|
return tblCarInfoService.queryPageList(bo, pageQuery);
|
|
@@ -49,7 +49,7 @@ public class TblCarInfoController extends BaseController {
|
|
|
/**
|
|
/**
|
|
|
* 导出车辆信息列表
|
|
* 导出车辆信息列表
|
|
|
*/
|
|
*/
|
|
|
- @SaCheckPermission("system:carInfo:export")
|
|
|
|
|
|
|
+ //@SaCheckPermission("system:carInfo:export")
|
|
|
@Log(title = "车辆信息", businessType = BusinessType.EXPORT)
|
|
@Log(title = "车辆信息", businessType = BusinessType.EXPORT)
|
|
|
@PostMapping("/export")
|
|
@PostMapping("/export")
|
|
|
public void export(TblCarInfoBo bo, HttpServletResponse response) {
|
|
public void export(TblCarInfoBo bo, HttpServletResponse response) {
|
|
@@ -62,7 +62,7 @@ public class TblCarInfoController extends BaseController {
|
|
|
*
|
|
*
|
|
|
* @param id 主键
|
|
* @param id 主键
|
|
|
*/
|
|
*/
|
|
|
- @SaCheckPermission("system:carInfo:query")
|
|
|
|
|
|
|
+ //@SaCheckPermission("system:carInfo:query")
|
|
|
@GetMapping("/{id}")
|
|
@GetMapping("/{id}")
|
|
|
public R<TblCarInfoVo> getInfo(@NotNull(message = "主键不能为空")
|
|
public R<TblCarInfoVo> getInfo(@NotNull(message = "主键不能为空")
|
|
|
@PathVariable Long id ,TblCarInfoBo bo) {
|
|
@PathVariable Long id ,TblCarInfoBo bo) {
|
|
@@ -75,7 +75,7 @@ public class TblCarInfoController extends BaseController {
|
|
|
/**
|
|
/**
|
|
|
* 新增车辆信息
|
|
* 新增车辆信息
|
|
|
*/
|
|
*/
|
|
|
- @SaCheckPermission("system:carInfo:add")
|
|
|
|
|
|
|
+ //@SaCheckPermission("system:carInfo:add")
|
|
|
@Log(title = "车辆信息", businessType = BusinessType.INSERT)
|
|
@Log(title = "车辆信息", businessType = BusinessType.INSERT)
|
|
|
@RepeatSubmit()
|
|
@RepeatSubmit()
|
|
|
@PostMapping()
|
|
@PostMapping()
|
|
@@ -86,7 +86,7 @@ public class TblCarInfoController extends BaseController {
|
|
|
/**
|
|
/**
|
|
|
* 修改车辆信息
|
|
* 修改车辆信息
|
|
|
*/
|
|
*/
|
|
|
- @SaCheckPermission("system:carInfo:edit")
|
|
|
|
|
|
|
+ //@SaCheckPermission("system:carInfo:edit")
|
|
|
@Log(title = "车辆信息", businessType = BusinessType.UPDATE)
|
|
@Log(title = "车辆信息", businessType = BusinessType.UPDATE)
|
|
|
@RepeatSubmit()
|
|
@RepeatSubmit()
|
|
|
@PutMapping()
|
|
@PutMapping()
|
|
@@ -99,7 +99,7 @@ public class TblCarInfoController extends BaseController {
|
|
|
*
|
|
*
|
|
|
* @param ids 主键串
|
|
* @param ids 主键串
|
|
|
*/
|
|
*/
|
|
|
- @SaCheckPermission("system:carInfo:remove")
|
|
|
|
|
|
|
+ //@SaCheckPermission("system:carInfo:remove")
|
|
|
@Log(title = "车辆信息", businessType = BusinessType.DELETE)
|
|
@Log(title = "车辆信息", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
@DeleteMapping("/{ids}")
|
|
|
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
|
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|