package com.panzhihua.service_community.dao; 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.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.panzhihua.common.model.dtos.community.PageComActEasyPhotoCommentDTO; import com.panzhihua.common.model.vos.community.ComActEasyPhotoCommentVO; import com.panzhihua.service_community.model.dos.ComActEasyPhotoCommentDO; /** * @program: springcloud_k8s_panzhihuazhihuishequ * @description: 随手拍评论 * @author: huang.hongfa weixin hhf9596 qq 959656820 * @create: 2021-01-21 14:45 **/ @Mapper public interface ComActEasyPhotoCommentDAO extends BaseMapper { // @Select("") @Select("") IPage pageComActEasyPhotoComment(Page page, @Param("comActEasyPhotoCommentDTO") PageComActEasyPhotoCommentDTO pageComActEasyPhotoCommentDTO); }