This commit is contained in:
van
2026-04-02 20:09:31 +08:00
parent d361e93895
commit 72d5856838
9 changed files with 469 additions and 22 deletions

View File

@@ -1,6 +1,7 @@
package com.ruoyi.jarvis.service;
import com.ruoyi.jarvis.domain.dto.WeComInboundRequest;
import com.ruoyi.jarvis.domain.dto.WeComInboundResult;
/**
* 企微文本消息业务入口(由 wxSend 通过 HTTPS + 共享密钥调用)
@@ -8,7 +9,7 @@ import com.ruoyi.jarvis.domain.dto.WeComInboundRequest;
public interface IWeComInboundService {
/**
* @return 被动回复文本;无内容时返回空串
* 首条进入被动回复;其余由控制器异步调 wxSend /wecom/active-push。
*/
String handleInbound(WeComInboundRequest request);
WeComInboundResult handleInbound(WeComInboundRequest request);
}