liyong
2 天以前 876d72a43b52fd4de8c37196d4f8dfd92bab4b7e
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));
    }