zhongrj
2024-02-22 858ddcd71b737c1e2d9f9c1fb9d009209cb97b4e
src/main/java/org/springblade/modules/article/mapper/ArticleCommentMapper.java
@@ -1,8 +1,11 @@
package org.springblade.modules.article.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
import org.springblade.modules.article.entity.ArticleCommentEntity;
import org.springblade.modules.article.vo.ArticleCommentVO;
import java.util.List;
/**
@@ -20,7 +23,7 @@
    * @param noticeComment
    * @return
    */
   List<ArticleCommentVO> selectArticleCommentPage(IPage page, ArticleCommentVO noticeComment);
   List<ArticleCommentVO> selectArticleCommentPage(IPage page, @Param("noticeComment") ArticleCommentVO noticeComment);
}