package com.qianwen.smartman.modules.system.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import java.util.List; import com.qianwen.smartman.modules.system.entity.DictBiz; import com.qianwen.smartman.modules.system.vo.DictBizVO; public interface DictBizMapper extends BaseMapper { String getValue(String code, String dictKey); List getList(String code); List tree(); List parentTree(); }