Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

修正参数注释 #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public interface IUserOnlineService
/**
* 查询会话集合
*
* @param userOnline 分页参数
* @param userOnline 会话信息
* @return 会话集合
*/
public List<UserOnline> selectUserOnlineList(UserOnline userOnline);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public UserOnline selectOnlineById(String sessionId)
* 通过会话序号删除信息
*
* @param sessionId 会话ID
* @return 在线用户信息
* @return
*/
@Override
public void deleteOnlineById(String sessionId)
Expand All @@ -65,7 +65,7 @@ public void deleteOnlineById(String sessionId)
* 通过会话序号删除信息
*
* @param sessions 会话ID集合
* @return 在线用户信息
* @return
*/
@Override
public void batchDeleteOnline(List<String> sessions)
Expand Down Expand Up @@ -94,7 +94,7 @@ public void saveOnline(UserOnline online)
/**
* 查询会话集合
*
* @param pageUtilEntity 分页参数
* @param userOnline 会话信息
*/
@Override
public List<UserOnline> selectUserOnlineList(UserOnline userOnline)
Expand Down Expand Up @@ -140,7 +140,7 @@ public void removeUserCache(String loginName, String sessionId)
/**
* 查询会话集合
*
* @param online 会话信息
* @param expiredDate 过期时间
*/
@Override
public List<UserOnline> selectOnlineByExpired(Date expiredDate)
Expand Down