fix
Helius
2021-11-30 de00eeb45e3aee0cbb5f62210c05ef32bb7478b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.xcong.excoin.common.system.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xcong.excoin.common.system.entity.DataDictionaryCustom;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface DataDictionaryCustomDao extends BaseMapper<DataDictionaryCustom> {
 
    List<DataDictionaryCustom> selectDicByType(String type);
 
    DataDictionaryCustom selectDicDataByTypeAndCode(@Param("type") String type, @Param("code") String code);
}