gongchunyi
2 天以前 dc5cb9eb1d29c9c15f21d373378fd39ec0e1ed49
src/main/java/com/ruoyi/production/service/ProductMaterialService.java
@@ -2,6 +2,7 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.production.dto.ProductMaterialGroupDto;
import com.ruoyi.production.dto.ProductMaterialSkuDto;
import com.ruoyi.production.pojo.ProductMaterial;
import java.util.List;
@@ -21,7 +22,7 @@
    void syncProductMaterialJob();
    List<ProductMaterialGroupDto> ProductMaterialList();
    List<ProductMaterialGroupDto> ProductMaterialList(Integer type);
    void addProductMaterial(ProductMaterial productMaterial);
@@ -30,4 +31,8 @@
    void deleteProductMaterial(List<Long> ids);
    List<ProductMaterialGroupDto> productMaterialListByQuery(String materialName, Integer materialTypeId);
    ProductMaterialSkuDto selectProductByModelId(Long productModelId);
    ProductMaterialSkuDto selectProductByProductMainId(Long productOrderId);
}