package com.doumee.dao.system; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.doumee.dao.system.dto.QuerySystemDictDTO; import com.doumee.dao.system.model.SystemDict; import com.doumee.dao.system.vo.SystemDictListVO; import org.apache.ibatis.annotations.Param; import java.util.List; public interface SystemDictMapper extends BaseMapper { /** * 查询字典管理列表 * * @param dto 详见QuerySystemDictDTO * @param orderByClause 排序语句 * @return List */ List selectManageList(@Param("dto") QuerySystemDictDTO dto, @Param("orderByClause") String orderByClause); }