From ddff2f4308f700d5917122611e70b053c8b1fcf7 Mon Sep 17 00:00:00 2001 From: wangxy <1356089412@qq.com> Date: Fri, 12 Apr 2024 16:45:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=9D=90=E6=96=99=E6=A0=A1=E9=AA=8C?= =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reward/FileRelationController.java | 52 +++++++++---------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/hyp-admin/src/main/java/com/hyp/web/controller/reward/FileRelationController.java b/hyp-admin/src/main/java/com/hyp/web/controller/reward/FileRelationController.java index ac22dd7..5f83b5b 100644 --- a/hyp-admin/src/main/java/com/hyp/web/controller/reward/FileRelationController.java +++ b/hyp-admin/src/main/java/com/hyp/web/controller/reward/FileRelationController.java @@ -6,7 +6,6 @@ import com.hyp.common.core.domain.AjaxResult; import com.hyp.common.utils.file.FileUploadUtils; import com.hyp.common.utils.file.FileUtils; import com.hyp.framework.config.ServerConfig; -import com.hyp.system.domain.RewFileRelation; import com.hyp.web.controller.manager.FileRelationManager; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; @@ -22,7 +21,6 @@ import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.nio.file.Files; -import java.util.Objects; /** @@ -47,29 +45,6 @@ public class FileRelationController extends BaseController { @Autowired private ServerConfig serverConfig; - @ApiOperation("材料删除") - @GetMapping("/delFile/{fileId}") - public AjaxResult delFile(@PathVariable String fileId){ - return toAjax(fileRelationManager.delFile(fileId)); - } - - - @ApiOperation("材料审核") - @GetMapping("/filePass") - public AjaxResult filePass(@RequestParam String applyId, - @RequestParam String fileCode, - @RequestParam Integer fileState){ - return toAjax(fileRelationManager.filePass(applyId,fileCode,fileState)); - } - - - @ApiOperation("材料校验") - @GetMapping("/checkFile/{applyId}") - public AjaxResult checkFile(@PathVariable String applyId){ - return fileRelationManager.checkFile(applyId); - } - - @ApiOperation("文件上传") @PostMapping("/upload") public AjaxResult uploadFile(MultipartFile file, @@ -116,7 +91,7 @@ public class FileRelationController extends BaseController { try { in.close(); } catch (IOException e) { - log.error(e.getMessage(), e); + log.error(e.getMessage(), e); } finally { if (out != null) { out.close(); @@ -126,5 +101,30 @@ public class FileRelationController extends BaseController { } } + @ApiOperation("材料删除") + @GetMapping("/delFile/{fileId}") + public AjaxResult delFile(@PathVariable String fileId){ + return toAjax(fileRelationManager.delFile(fileId)); + } + + + @ApiOperation("材料审核") + @GetMapping("/filePass") + public AjaxResult filePass(@RequestParam String applyId, + @RequestParam String fileCode, + @RequestParam Integer fileState){ + return toAjax(fileRelationManager.filePass(applyId,fileCode,fileState)); + } + + + @ApiOperation("材料校验") + @GetMapping("/checkFile/{applyId}") + public AjaxResult checkFile(@PathVariable String applyId){ + return fileRelationManager.checkFile(applyId); + } + + + + }