package com.example.mapper; import com.example.dto.PageQueryDTO; import com.example.entity.Awards; import com.example.entity.Home; import com.example.entity.Thesis; import com.example.entity.Work; import com.github.pagehelper.Page; import org.apache.ibatis.annotations.Mapper; @Mapper public interface OpenMapper { /** * 首页分页查询 * @param pageQueryDTO * @return */ Page page(PageQueryDTO pageQueryDTO); /** * 获奖分页查询 * @param pageQueryDTO * @return */ Page AwardsPage(PageQueryDTO pageQueryDTO); /** * 著作分页查询 * @param pageQueryDTO * @return */ Page WorkPage(PageQueryDTO pageQueryDTO); /** * 论文分页查询 * @param pageQueryDTO * @return */ Page ThesisPage(PageQueryDTO pageQueryDTO); }