he wei
2023-02-09 13029f66f79c328919c5b64d3914ac1d20762cb9
src/main/java/com/whyc/controller/ProductController.java
@@ -80,6 +80,12 @@
        return bomHistoryService.getBomHistoryAndMaterial(productId,version);
    }
    @ApiOperation(value = "历史产品信息查看(产品中有0120开头的物料其实是产品,查看产品信息)",notes = "2.8修改后使用")
    @GetMapping("getBomHistoryAndMaterial_0120")
    public Response getBomHistoryAndMaterial_0120( @RequestParam String parentCode, @RequestParam String parentName, @RequestParam String parentModel){
        return bomHistoryService.getBomHistoryAndMaterial_0120(parentCode,parentName,parentModel);
    }
    @ApiOperation(value = "根据产品母料型号,定制单号,版本下载原始压缩包文件",notes = "11.17修改后使用")
    @GetMapping("getOriginalZip")
    public Response getOriginalZip( @RequestParam String parentModel,@RequestParam(required = false) String customCode,@RequestParam int version){
@@ -126,4 +132,9 @@
        bomService.updateMaterialField2Bom();
    }*/
    @ApiOperation(tags = "反馈管理",value = "查询当前使用的所有的产品")
    @GetMapping("getFkProduct")
    public Response getFkProduct(){
        return service.getFkProduct();
    }
}