소스 검색

no message

FengChaoYu 11 달 전
부모
커밋
4e348fe94a
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      mall-server-api/src/main/java/com/gree/mall/manager/controller/settle/repair/BankAccountController.java

+ 1 - 2
mall-server-api/src/main/java/com/gree/mall/manager/controller/settle/repair/BankAccountController.java

@@ -22,7 +22,6 @@ import org.springframework.web.multipart.MultipartFile;
 
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
-import java.io.IOException;
 import java.util.concurrent.TimeUnit;
 import java.util.concurrent.locks.Lock;
 
@@ -165,7 +164,7 @@ public class BankAccountController {
 //
     @PostMapping("/template/import")
     @ApiOperation("导入银行账户")
-    public ResponseHelper importData(MultipartFile file) throws IOException {
+    public ResponseHelper importData(MultipartFile file) throws Exception {
         repairSettleAccountLogic.importData(file);
         return ResponseHelper.success();
     }