| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.dtos.community.PageComEldersAuthStatisticsDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageEldersAuthHistoryDTO; |
| | | import com.panzhihua.common.model.vos.community.ComEldersAuthHistoryVO; |
| | | import com.panzhihua.service_community.model.dos.ComEldersAuthStatisticsDO; |
| | | import com.panzhihua.common.model.vos.community.ComEldersAuthStatisticsVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | |
| | | * |
| | | * @author cedoo email:cedoo(a)qq.com |
| | | * @version 1.0 |
| | | * @since 1.0 |
| | | * @date 2021-06-10 |
| | | * */ |
| | | * @since 1.0 |
| | | */ |
| | | @Mapper |
| | | public interface ComEldersAuthStatisticsMapper extends BaseMapper<ComEldersAuthStatisticsDO> { |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * @param pageComEldersAuthStatisticsDTO |
| | | * @return |
| | | */ |
| | | IPage<ComEldersAuthStatisticsVO> findByPage(Page page, @Param("pageComEldersAuthStatisticsDTO") PageComEldersAuthStatisticsDTO pageComEldersAuthStatisticsDTO); |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param pageEldersAuthHistoryDTO |
| | | * @return |
| | | */ |
| | | IPage<ComEldersAuthHistoryVO> findByPage(Page page, @Param("pageEldersAuthHistoryDTO") PageEldersAuthHistoryDTO pageEldersAuthHistoryDTO); |
| | | |
| | | } |