package com.ruoyi.production.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ruoyi.production.pojo.ProductMaterial;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* <br>
|
* 产品物料信息接口
|
* </br>
|
*
|
* @author deslrey
|
* @version 1.0
|
* @since 2026/03/11 16:35
|
*/
|
public interface ProductMaterialService extends IService<ProductMaterial> {
|
|
void loadProductMaterialData();
|
|
void syncProductMaterialJob();
|
|
Map<String, List<ProductMaterial>> ProductMaterialList(String materialName);
|
|
void addProductMaterial(ProductMaterial productMaterial);
|
|
void updateProductMaterial(ProductMaterial productMaterial);
|
|
void deleteProductMaterial(List<Long> ids);
|
}
|