package com.panzhihua.service_community.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.panzhihua.common.model.dtos.neighbor.DetailNeighborCommentReplyByAdminDTO; import com.panzhihua.common.model.vos.neighbor.ComActNeighborCircleCommentReplyAppVO; import com.panzhihua.common.model.vos.neighbor.ComActNeighborCommentReplyByAdminVO; import com.panzhihua.service_community.model.dos.ComActNeighborCircleCommentReplyDO; /** * @auther lyq * @create 2021-04-28 09:21:45 * @describe 邻里圈评论回复表mapper类 */ @Mapper public interface ComActNeighborCircleCommentReplyDAO extends BaseMapper { @Select("") List getCircleCommentReplyList(@Param("commentId") Long commentId); @Select("") Page selectListByComment(Page page, @Param("dto") DetailNeighborCommentReplyByAdminDTO dto); }