删除权限注解,出入库移库

This commit is contained in:
2025-07-18 11:30:09 +08:00
parent ab1dda6422
commit 03af50ad9b
16 changed files with 115 additions and 50 deletions

View File

@@ -40,7 +40,6 @@ public class WmsPurchasePlanController extends BaseController {
/**
* 查询采购计划主列表
*/
@SaCheckPermission("klp:purchasePlan:list")
@GetMapping("/list")
public TableDataInfo<WmsPurchasePlanVo> list(WmsPurchasePlanBo bo, PageQuery pageQuery) {
return iWmsPurchasePlanService.queryPageList(bo, pageQuery);
@@ -49,7 +48,6 @@ public class WmsPurchasePlanController extends BaseController {
/**
* 导出采购计划主列表
*/
@SaCheckPermission("klp:purchasePlan:export")
@Log(title = "采购计划主", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(WmsPurchasePlanBo bo, HttpServletResponse response) {
@@ -62,7 +60,6 @@ public class WmsPurchasePlanController extends BaseController {
*
* @param planId 主键
*/
@SaCheckPermission("klp:purchasePlan:query")
@GetMapping("/{planId}")
public R<WmsPurchasePlanVo> getInfo(@NotNull(message = "主键不能为空")
@PathVariable Long planId) {
@@ -72,7 +69,6 @@ public class WmsPurchasePlanController extends BaseController {
/**
* 新增采购计划主
*/
@SaCheckPermission("klp:purchasePlan:add")
@Log(title = "采购计划主", businessType = BusinessType.INSERT)
@RepeatSubmit()
@PostMapping()
@@ -83,7 +79,6 @@ public class WmsPurchasePlanController extends BaseController {
/**
* 修改采购计划主
*/
@SaCheckPermission("klp:purchasePlan:edit")
@Log(title = "采购计划主", businessType = BusinessType.UPDATE)
@RepeatSubmit()
@PutMapping()
@@ -96,7 +91,6 @@ public class WmsPurchasePlanController extends BaseController {
*
* @param planIds 主键串
*/
@SaCheckPermission("klp:purchasePlan:remove")
@Log(title = "采购计划主", businessType = BusinessType.DELETE)
@DeleteMapping("/{planIds}")
public R<Void> remove(@NotEmpty(message = "主键不能为空")