guoyuji
2024-07-16 352ea6a79d6d1e470d53b4a4f3800d183d0f40d4
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,"反审失败");
        }
    }
}