package com.qianwen.smartman.modules.system.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import java.util.List; import com.qianwen.smartman.modules.system.entity.Dict; import com.qianwen.smartman.modules.system.vo.DictVO; public interface DictMapper extends BaseMapper { List selectDictPage(IPage page, DictVO dict); String getValue(String code, String dictKey); List getList(String code); List tree(); List parentTree(); }