| | |
| | | package com.ruoyi.production.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.production.dto.ProductMaterialGroupDto; |
| | | import com.ruoyi.production.pojo.ProductMaterial; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <br> |
| | |
| | | void loadProductMaterialData(); |
| | | |
| | | void syncProductMaterialJob(); |
| | | |
| | | List<ProductMaterialGroupDto> ProductMaterialList(Integer type); |
| | | |
| | | void addProductMaterial(ProductMaterial productMaterial); |
| | | |
| | | void updateProductMaterial(ProductMaterial productMaterial); |
| | | |
| | | void deleteProductMaterial(List<Long> ids); |
| | | |
| | | List<ProductMaterialGroupDto> productMaterialListByQuery(String materialName, Integer materialTypeId); |
| | | } |