廖井涛
2024-08-27 39526667ddfc076d0982cebe48a8e07f9dcaff5b
north-glass-erp/src/main/java/com/example/erp/controller/pp/ProductionSchedulingController.java
@@ -95,4 +95,17 @@
        }
    }
    @ApiOperation("排版反审接口")
    @SaCheckPermission("ProductionScheduling.review")
    @PostMapping("/cancelReviewScheduling")
    public Result cancelReviewScheduling( @RequestBody Map<String,Object>  object){
        if(productionSchedulingService.cancelReviewSchedulingSv(object)){
            return Result.seccess();
        }else {
            throw new ServiceException(Constants.Code_500,"反审失败");
        }
    }
}