diff --git a/dl-module-repair/src/main/java/cn/iocoder/yudao/module/project/controller/admin/RepairProjectController.java b/dl-module-repair/src/main/java/cn/iocoder/yudao/module/project/controller/admin/RepairProjectController.java index 13768d55..07dc3013 100644 --- a/dl-module-repair/src/main/java/cn/iocoder/yudao/module/project/controller/admin/RepairProjectController.java +++ b/dl-module-repair/src/main/java/cn/iocoder/yudao/module/project/controller/admin/RepairProjectController.java @@ -44,7 +44,7 @@ public class RepairProjectController { **/ @PostMapping("/create") @Operation(summary = "创建维修项目") - @PreAuthorize("@ss.hasPermission('repair:project:create')") +// @PreAuthorize("@ss.hasPermission('repair:project:create')") public CommonResult createRepairProject(@Valid @RequestBody RepairProjectSaveReqVO createReqVO) { RepairProject repairProject = repairProjectService.saveRepairProject(createReqVO); return success(repairProject); @@ -60,7 +60,7 @@ public class RepairProjectController { **/ @PutMapping("/update") @Operation(summary = "更新维修项目") - @PreAuthorize("@ss.hasPermission('repair:project:update')") +// @PreAuthorize("@ss.hasPermission('repair:project:update')") public CommonResult updateRepairProject(@Valid @RequestBody RepairProjectSaveReqVO updateReqVO) { repairProjectService.saveRepairProject(updateReqVO); return success(true); @@ -77,7 +77,7 @@ public class RepairProjectController { @DeleteMapping("/delete") @Operation(summary = "删除维修项目") @Parameter(name = "id", description = "编号", required = true) - @PreAuthorize("@ss.hasPermission('repair:project:delete')") +// @PreAuthorize("@ss.hasPermission('repair:project:delete')") public CommonResult deleteRepairProject(@RequestParam("id") String id) { repairProjectService.deleteRepairProject(id); return success(true); @@ -94,7 +94,7 @@ public class RepairProjectController { @GetMapping("/get") @Operation(summary = "获得维修项目") @Parameter(name = "id", description = "编号", required = true, example = "1024") - @PreAuthorize("@ss.hasPermission('repair:project:query')") +// @PreAuthorize("@ss.hasPermission('repair:project:query')") public CommonResult getRepairProject(@RequestParam("id") String id) { RepairProject repairProject = repairProjectService.getRepairProject(id); return success(BeanUtils.toBean(repairProject, RepairProjectRespVO.class)); @@ -113,7 +113,7 @@ public class RepairProjectController { **/ @GetMapping("/page") @Operation(summary = "获得维修项目分页") - @PreAuthorize("@ss.hasPermission('repair:project:query')") +// @PreAuthorize("@ss.hasPermission('repair:project:query')") public CommonResult> getRepairProjectPage(RepairProjectPageReqVO pageReqVO, @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo, @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize) { diff --git a/dl-module-repair/src/main/java/cn/iocoder/yudao/module/project/controller/admin/RepairWaresController.java b/dl-module-repair/src/main/java/cn/iocoder/yudao/module/project/controller/admin/RepairWaresController.java index 547dcb33..2e570198 100644 --- a/dl-module-repair/src/main/java/cn/iocoder/yudao/module/project/controller/admin/RepairWaresController.java +++ b/dl-module-repair/src/main/java/cn/iocoder/yudao/module/project/controller/admin/RepairWaresController.java @@ -43,7 +43,7 @@ public class RepairWaresController { **/ @PostMapping("/create") @Operation(summary = "创建配件库") - @PreAuthorize("@ss.hasPermission('repair:wares:create')") +// @PreAuthorize("@ss.hasPermission('repair:wares:create')") public CommonResult createWares(@Valid @RequestBody RepairWaresSaveReqVO createReqVO) { return success(waresService.saveWares(createReqVO)); } @@ -58,7 +58,7 @@ public class RepairWaresController { **/ @PutMapping("/update") @Operation(summary = "更新配件库") - @PreAuthorize("@ss.hasPermission('repair:wares:update')") +// @PreAuthorize("@ss.hasPermission('repair:wares:update')") public CommonResult updateWares(@Valid @RequestBody RepairWaresSaveReqVO updateReqVO) { waresService.saveWares(updateReqVO); return success(true); @@ -75,7 +75,7 @@ public class RepairWaresController { @DeleteMapping("/delete") @Operation(summary = "删除配件库") @Parameter(name = "id", description = "编号", required = true) - @PreAuthorize("@ss.hasPermission('repair:wares:delete')") +// @PreAuthorize("@ss.hasPermission('repair:wares:delete')") public CommonResult deleteWares(@RequestParam("id") String id) { waresService.deleteWares(id); return success(true); @@ -92,7 +92,7 @@ public class RepairWaresController { @GetMapping("/get") @Operation(summary = "获得配件库") @Parameter(name = "id", description = "编号", required = true, example = "1024") - @PreAuthorize("@ss.hasPermission('repair:wares:query')") +// @PreAuthorize("@ss.hasPermission('repair:wares:query')") public CommonResult getWares(@RequestParam("id") String id) { return success(waresService.getWares(id)); } @@ -109,7 +109,7 @@ public class RepairWaresController { **/ @GetMapping("/page") @Operation(summary = "获得配件库分页") - @PreAuthorize("@ss.hasPermission('repair:wares:query')") +// @PreAuthorize("@ss.hasPermission('repair:wares:query')") public CommonResult> getWaresPage(RepairWaresPageReqVO pageReqVO, @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo, @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize) {