| | |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.io.IOException; |
| | | import java.text.ParseException; |
| | | import java.util.List; |
| | | |
| | | @Api(tags = "软件管理-新版") |
| | |
| | | |
| | | @ApiModelProperty("excel解析") |
| | | @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; |