1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.consum.base;
 
import com.consum.model.po.FinSysTenantUser;
 
/**
 * 后台登录用户缓存
 * @author 王涵
 * @date 2023-07-18
 */
public interface FinSysTenantUserCacheProvider {
 
    FinSysTenantUser get(String userId);
 
    void save(FinSysTenantUser e);
 
    void update(FinSysTenantUser e);
 
    void remove(String userId);
 
    /**
     * @Description 此处只是用于查询客服是否在线时候使用
     * @Author wh
     * @Date 2023/9/15 18:00
     */
    FinSysTenantUser getByUserId(String userId);
}