| package doumeemes.dao.ext; | 
|   | 
| import doumeemes.dao.business.model.Category; | 
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
| import doumeemes.dao.ext.vo.CategoryExtListVO; | 
| import doumeemes.dao.ext.dto.QueryCategoryExtDTO; | 
|   | 
| import java.util.List; | 
|   | 
| public interface CategoryExtMapper extends BaseMapper<Category> { | 
|   | 
|     /** | 
|      * 管理页面查询 | 
|      * @author 江蹄蹄 | 
|      * @date 2022/04/27 16:15 | 
|      */ | 
|     List<CategoryExtListVO> selectList(QueryCategoryExtDTO dto); | 
| } |