shikeying
2024-05-08 8924870a053f0b882ada86421c062cbdb9cff093
1
2
3
4
5
6
7
8
9
10
11
12
package com.iplatform.chat;
 
public interface ChatSessionCache {
 
    ChatSession get(long id);
 
    void save(ChatSession category);
 
    void update(ChatSession category);
 
    void remove(long id);
}