src/main/java/com/whyc/controller/ProductController.java
@@ -55,7 +55,7 @@
    public Response getBomAndMaterial( @RequestParam int productId, @RequestParam int version){
        return bomService.getBomAndMaterial(productId,version);
    }
    @ApiOperation(value = "产品下载(产品id和版本)",notes = "8.17修改后使用")
    @ApiOperation(value = "产品下载(产品id和版本<历史版本待定>)",notes = "8.17修改后使用")
    @GetMapping("downloadProduct")
    public void downloadProduct(HttpServletRequest req, HttpServletResponse resp, @RequestParam int productId, @RequestParam int version){
         bomService.downloadProduct(req,resp,productId,version);