From c40d7f65624a6f158ec734d2007d7bf8d3b744f4 Mon Sep 17 00:00:00 2001
From: whycxzp <perryhsu@163.com>
Date: 星期三, 07 九月 2022 11:32:54 +0800
Subject: [PATCH] 软件excel解析

---
 src/main/java/com/whyc/controller/SoftwareController.java |   39 ++++++++++++++++++++++++++++++++-------
 1 files changed, 32 insertions(+), 7 deletions(-)

diff --git a/src/main/java/com/whyc/controller/SoftwareController.java b/src/main/java/com/whyc/controller/SoftwareController.java
index 0ac33c0..6ff1a79 100644
--- a/src/main/java/com/whyc/controller/SoftwareController.java
+++ b/src/main/java/com/whyc/controller/SoftwareController.java
@@ -4,16 +4,16 @@
 import com.whyc.pojo.Software;
 import com.whyc.service.SoftwareService;
 import io.swagger.annotations.Api;
-import io.swagger.annotations.ApiModelProperty;
+import io.swagger.annotations.ApiOperation;
 import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RequestParam;
-import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.bind.annotation.*;
 import org.springframework.web.multipart.MultipartFile;
 
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
 import java.io.IOException;
+import java.text.ParseException;
 import java.util.List;
 
 @Api(tags = "杞欢绠$悊-鏂扮増")
@@ -24,9 +24,9 @@
     @Autowired
     private SoftwareService service;
 
-    @ApiModelProperty("excel瑙f瀽")
+    @ApiOperation("excel瑙f瀽")
     @PostMapping("excelParse")
-    public Response excelParse(@RequestParam MultipartFile multipartFile) throws IOException, InvalidFormatException {
+    public Response excelParse(@RequestParam MultipartFile multipartFile) throws IOException, InvalidFormatException, ParseException {
         Response<Object> response = new Response<>();
         String name=multipartFile.getOriginalFilename();
         assert name != null;
@@ -39,4 +39,29 @@
         return response;
     }
 
+    @ApiOperation("杞欢涓婁紶")
+    @PostMapping("upload")
+    public Response upload(@RequestParam MultipartFile file1,@RequestParam MultipartFile file2,@RequestParam String softwareStr){
+
+        return null;
+    }
+
+    @ApiOperation(value = "鏌ヨ杞欢鍒楄〃鐨勪俊鎭�")
+    @GetMapping("getAllSoftware")
+    public Response getAllSoftware(@RequestParam(required = false) String fileName,@RequestParam int pageCurr,@RequestParam int pageSize ){
+        return service.getAllSoftware(fileName,pageCurr,pageSize);
+    }
+
+    @ApiOperation(value = "鏍规嵁subcode鏌ヨ杞欢鍒楄〃")
+    @GetMapping("getSoftBySubCode")
+    public Response getSoftBySubCode(@RequestParam String subCode ){
+        return service.getSoftBySubCode(subCode);
+    }
+
+    @ApiOperation(value = "鏍规嵁杞欢id瀹炵幇杞欢涓嬭浇")
+    @GetMapping("downLoadSoftware")
+    public void downLoadSoftware(HttpServletRequest req, HttpServletResponse resp, @RequestParam int id){
+        service.downLoadSoftware(req,resp,id);
+    }
+
 }

--
Gitblit v1.9.1