io.github.dengchen2020.message.feishu.FeiShuService Maven / Gradle / Ivy
package io.github.dengchen2020.message.feishu;
/**
* 飞书消息接口
* @author dengchen
* @since 2023/7/4
*/
public interface FeiShuService {
/**
* 发送文本消息
* @param text 文本内容
*/
void sendText(String text);
/**
* 发送文本消息
* @param text 文本内容
* @param webhook webhook地址
*/
void sendText(String text,String webhook);
/**
* 发送文本消息并@所有人
* @param text 文本内容
*/
void sendTextToAll(String text);
/**
* 发送文本消息并@所有人
* @param text 文本内容
* @param webhook webhook地址
*/
void sendTextToAll(String text,String webhook);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy