All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.dengchen2020.message.feishu.FeiShuService Maven / Gradle / Ivy

There is a newer version: 0.0.42
Show newest version
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