lxw
2022-08-10 0a03aef8adab4b91a46cf733c8bb5d5d95e18c69
src/main/java/com/whyc/controller/ProductBomController.java
@@ -58,8 +58,8 @@
    @ApiOperation(tags = "产品管理",value = "获取所有产品信息")
    @GetMapping("getAllBom")
    public Response getAllBom( @RequestParam int pageCurr, @RequestParam int pageSize){
        return service.getAllBom(pageCurr,pageSize);
    public Response getAllBom( @RequestParam(required = false) String parentCode,@RequestParam(required = false) String parentName, @RequestParam(required = false) String parentModel,  @RequestParam int pageCurr, @RequestParam int pageSize){
        return service.getAllBom(parentCode,parentName,parentModel,pageCurr,pageSize);
    }
    @ApiOperation(tags = "产品管理",value = "根据母料型号查询子件信息及有最新版本关联的散装件信息")