This commit is contained in:
van
2026-04-01 01:57:19 +08:00
parent 9f3fb23a91
commit f2f6d02b2f
13 changed files with 347 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.ruoyi.jarvis.service;
import com.ruoyi.jarvis.domain.dto.WeComInboundRequest;
/**
* 企微文本消息业务入口(由 wxSend 通过 HTTPS + 共享密钥调用)
*/
public interface IWeComInboundService {
/**
* @return 被动回复文本;无内容时返回空串
*/
String handleInbound(WeComInboundRequest request);
}