田源
2025-01-16 a13255b4129ee8a7a7b7e1ecd8e02dd2c78f7c17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.vci.starter.web.interceptor;
 
import com.vci.starter.web.pagemodel.SessionInfo;
 
import java.util.List;
 
/**
 * 通知登录
 * @author weidy
 * @date 2020/2/27
 */
public interface VciNoticePopLoginI {
 
    /**
     * 通知用户被踢下线
     * @param sessionInfoList 用户会话信息
     */
    void noticePopLogin(List<SessionInfo> sessionInfoList);
}