From 8ea56d3b22432d7af3d14f3539e2cbf7c3dbb036 Mon Sep 17 00:00:00 2001 From: phanes <5411232+phanes@user.noreply.gitee.com> Date: 星期日, 07 十一月 2021 11:58:35 +0800 Subject: [PATCH] update 减少使用特定数据库函数 --- ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysPostMapper.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysPostMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysPostMapper.java index 8a1b309..50a5c75 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysPostMapper.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysPostMapper.java @@ -8,7 +8,7 @@ /** * 宀椾綅淇℃伅 鏁版嵁灞� * - * @author ruoyi + * @author Lion Li */ public interface SysPostMapper extends BaseMapperPlus<SysPost> { @@ -18,7 +18,7 @@ * @param userId 鐢ㄦ埛ID * @return 閫変腑宀椾綅ID鍒楄〃 */ - public List<Integer> selectPostListByUserId(Long userId); + List<Integer> selectPostListByUserId(Long userId); /** * 鏌ヨ鐢ㄦ埛鎵�灞炲矖浣嶇粍 @@ -26,6 +26,6 @@ * @param userName 鐢ㄦ埛鍚� * @return 缁撴灉 */ - public List<SysPost> selectPostsByUserName(String userName); + List<SysPost> selectPostsByUserName(String userName); } -- Gitblit v1.9.3