|
|
|
@ -55,5 +55,6 @@ public interface UserInfoDao extends JpaRepository<UserInfo, String>, JpaSpecifi
|
|
|
|
|
" and vip_expire_time < now()", nativeQuery = true)
|
|
|
|
|
public List<UserInfo> getExpireVipList();
|
|
|
|
|
|
|
|
|
|
public List<UserInfo> getUserInfosByNickNameLike(String nickName);
|
|
|
|
|
@Query(value = "select * from tb_user_info where nick_name like ?1 limit 50", nativeQuery = true)
|
|
|
|
|
public List<UserInfo> getUserInfosByNickNameLikeLimit50(String nickName);
|
|
|
|
|
}
|
|
|
|
|