Helius
2021-09-25 61dedee5f412d8a29f5e3030216c67d4d89f98e3
1
2
3
4
5
6
7
8
9
10
11
package cc.mrbird.febs.mall.mapper;
 
import cc.mrbird.febs.mall.entity.DataDictionaryCustom;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
import java.util.List;
 
public interface DataDictionaryCustomMapper extends BaseMapper<DataDictionaryCustom> {
 
    List<DataDictionaryCustom> selectDicByType(String type);
}