cjl
2023-10-07 7e2f3abca2f5bb83459f809b8e7195b361e0a372
screen-api/src/main/java/com/moral/api/controller/AllocationExtensionController.java
@@ -56,8 +56,8 @@
    @GetMapping("check")
    @ApiOperation("审批")
    public ResultMessage check(@RequestParam @ApiParam(value = "id",name = "主键id") Integer id,
                                       @RequestParam @ApiParam(value = "sate",name = "状态") Integer sate){
        allocationExtensionService.check(id,sate);
                                       @RequestParam @ApiParam(value = "state",name = "状态") Integer state){
        allocationExtensionService.check(id,state);
        return ResultMessage.ok();
    }