排单管理中的@PreAuthorize权限串修改

This commit is contained in:
gaoqr
2024-06-19 16:50:21 +08:00
parent 5d29655aba
commit 7523dab74d
2 changed files with 9 additions and 9 deletions
@@ -102,7 +102,7 @@ public class RemainPlateController {
@GetMapping("/page")
@Operation(summary = "获得生产单余料板表分页")
@PreAuthorize("@ss.hasPermission('manage:remain-plate:query')")
@PreAuthorize("@ss.hasPermission('placeorder:remain')")
public CommonResult<PageResult<RemainPlateRespVO>> getRemainPlatePage(@Valid RemainPlatePageReqVO pageReqVO) {
PageResult<RemainPlateDO> pageResult = remainPlateService.getRemainPlatePage(pageReqVO);
return success(BeanUtils.toBean(pageResult, RemainPlateRespVO.class));