cuilei
2025-05-06 4a42e8745fe27cf8edf500eaa5b2d65e080c09b0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.jeecg.modules.base.service;
 
import org.jeecg.modules.base.entity.Material;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * @Description: 物料表
 * @Author: jeecg-boot
 * @Date:   2023-04-28
 * @Version: V1.0
 */
public interface IMaterialService extends IService<Material> {
 
}