移除权限注解,新增订单查询接口

This commit is contained in:
JR
2025-07-18 11:40:29 +08:00
parent 1fee252667
commit a8ee1cd12d
12 changed files with 27 additions and 40 deletions

View File

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