| | |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | @Api(tags = "图纸管理") |
| | | @RestController |
| | |
| | | } |
| | | |
| | | @ApiOperation("图纸文件打包下载") |
| | | @GetMapping("downloadCadDrawer") |
| | | public void downloadCadDrawer(HttpServletRequest req, HttpServletResponse resp, String[] pictureUrls){ |
| | | @PostMapping("downloadCadDrawer") |
| | | public void downloadCadDrawer(HttpServletRequest req, HttpServletResponse resp,@RequestBody ArrayList<String> pictureUrls){ |
| | | service.downloadCadDrawer(req,resp,pictureUrls); |
| | | } |
| | | @ApiOperation(value = "根据子件code获取最终的信息") |