zss
2023-09-04 e4aed6ad69c6b4b55d6d043f3706967439e2500d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.yuanchu.mom.mapper;
 
import com.yuanchu.mom.pojo.Material;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
import java.util.List;
import java.util.Map;
 
/**
* @author Administrator
* @description 针对表【material】的数据库操作Mapper
* @createDate 2023-07-26 15:52:50
* @Entity com.yuanchu.mom.pojo.Material
*/
 
public interface MaterialMapper extends BaseMapper<Material> {
 
 
    //标准MOM-->左侧五级树展示
    List<Map<String,Object>> selectTreeByMaterial();
 
    //根据标准id查询物料
    Material selFath(Integer id);
}