liyong
2 天以前 f72b363ee424c5f76dbd0854ac5df9d82bec7b0b
src/main/java/com/ruoyi/production/controller/ProductStructureController.java
@@ -22,8 +22,8 @@
    @ApiOperation("根据productId查询")
    @GetMapping("listByproductModelId")
    public R listByproductModelId( Long productModelId){
    @GetMapping("listByproductModelId/{productModelId}")
    public R listByproductModelId( @PathVariable("productModelId") Long productModelId){
        return R.ok(productStructureService.listByproductModelId( productModelId));
    }