集成钉钉

This commit is contained in:
2026-05-15 17:35:26 +08:00
parent f654180148
commit 42b1555c80
10 changed files with 288 additions and 8 deletions

View File

@@ -0,0 +1,14 @@
package com.rj.service;
/**
* 钉钉自定义机器人(群消息)发送。
*/
public interface DingTalkRobotService {
/**
* 向配置的钉钉群发送文本消息。
*
* @param content 消息正文
*/
void sendText(String content);
}