update BaseMapper list rename to select

This commit is contained in:
Timi
2026-01-04 19:12:47 +08:00
parent 7eb409f6d0
commit 040a46934d
5 changed files with 7 additions and 7 deletions
@@ -22,7 +22,7 @@ public interface CommentMapper extends BaseMapper<Comment, Long> {
long countByPage(Page page);
@Override
List<Comment> listByPage(Page page);
List<Comment> selectByPage(Page page);
@Select("SELECT * FROM comment WHERE id = #{id}" + NOT_DELETE)
Comment select(Long id);