| | |
| | | return service.searchCadDrawer(productBom,pageCurr,pageSize); |
| | | } |
| | | |
| | | @ApiOperation("图纸文件下载") |
| | | @ApiOperation("图纸文件打包下载") |
| | | @GetMapping("downloadCadDrawer") |
| | | public void downloadCadDrawer(HttpServletRequest req, HttpServletResponse resp){ |
| | | service.downloadCadDrawer(req,resp); |
| | |
| | | public Response getBomBySubcode(@RequestParam String scode){ |
| | | return service.getBomBySubcode(scode); |
| | | } |
| | | @ApiOperation(value = "下载操作日志记录") |
| | | @GetMapping("downloadLog") |
| | | public Response downloadLog(@RequestParam(required = false) String parentModel,@RequestParam(required = false) String subModel){ |
| | | return new Response().set(1,true,"记录下载日志"); |
| | | } |
| | | |
| | | } |