gongchunyi
15 小时以前 f3cf05b74840f57f632af858ee27aab1d937cab8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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>
 * 产品物料信息接口
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/11 16:35
 */
public interface ProductMaterialService extends IService<ProductMaterial> {
 
    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);
}