gongchunyi
3 天以前 2f58ddd5085b9e51bcc4b7e1ad2e850a95e43bbd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.production.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.production.pojo.ProductMaterial;
 
/**
 * <br>
 * 产品物料信息接口
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/11 16:35
 */
public interface ProductMaterialService extends IService<ProductMaterial> {
 
    void loadProductMaterialData();
 
    void syncProductMaterialJob();
}