fix:参数类型查询权限

dev
wangxy 12 months ago
parent 06343de2e0
commit c5f2ad6a04

@ -79,6 +79,20 @@ public class FileRelationManager {
} }
/**
*
*
* @param fileId
* @param fileState
* @return boolean
*/
public boolean pass( String fileId, Integer fileState){
return fileRelationService.lambdaUpdate()
.eq(RewFileRelation::getFileId,fileId)
.set(RewFileRelation::getFileState,fileState)
.update();
}
/** /**
* *
* *

@ -140,6 +140,13 @@ public class FileRelationController extends BaseController {
return toAjax(fileRelationManager.filePass(applyId,fileCode,fileState)); return toAjax(fileRelationManager.filePass(applyId,fileCode,fileState));
} }
@ApiOperation("材料审核")
@GetMapping("/pass")
public AjaxResult pass(@RequestParam String fileId,
@RequestParam Integer fileState){
return toAjax(fileRelationManager.pass(fileId,fileState));
}
@ApiOperation("材料校验") @ApiOperation("材料校验")
@GetMapping("/checkFile/{applyId}") @GetMapping("/checkFile/{applyId}")

Loading…
Cancel
Save