whyclxw
2024-07-23 2271cde3d0392b9a2320a20aadca4b3cb93ae652
src/main/java/com/whyc/controller/ProductBomController.java
@@ -13,9 +13,7 @@
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.Date;
import java.util.List;
@Api(tags = "图纸管理")
@RestController
@@ -74,8 +72,8 @@
    }*/
    @ApiOperation(tags = "散装件管理",value = "查询所有产品中没有与指定散装件关联的子件")
    @GetMapping("getAllSubWithOutMaterial")
    public Response getAllSubWithOutMaterial(@RequestParam int MaterialId){
        return  service.getAllSubWithOutMaterial(MaterialId);
    public Response getAllSubWithOutMaterial(@RequestParam int materialId){
        return  service.getAllSubWithOutMaterial(materialId);
    }
}