1
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.ruoyi.jarvis.service;
|
||||
|
||||
import com.ruoyi.jarvis.domain.dto.WeComChatSession;
|
||||
|
||||
/**
|
||||
* 企微多轮会话(Redis JSON,键前缀与旧版 JDUtil「interaction_state」思路一致:interaction_state:wecom:{userId})
|
||||
*/
|
||||
public interface IWeComChatSessionService {
|
||||
|
||||
WeComChatSession get(String wecomUserId);
|
||||
|
||||
void put(String wecomUserId, WeComChatSession session);
|
||||
|
||||
void delete(String wecomUserId);
|
||||
}
|
||||
Reference in New Issue
Block a user