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

io.github.dengchen2020.message.dingtalk.DingTalkService Maven / Gradle / Ivy

There is a newer version: 0.0.42
Show newest version
package io.github.dengchen2020.message.dingtalk;

import java.util.List;

/**
 * 钉钉消息接口
 * @author dengchen
 * @since 2023/3/11
 */

public interface DingTalkService {

    /**
     * 发送文本消息
     * @param text 文本内容
     */
    void sendText(String text);

    /**
     * 发送文本消息
     * @param text 文本内容
     * @param phones 需要@的用户所绑定的手机号
     */
    void sendText(String text, List phones);

    /**
     * 发送文本消息
     * @param text 文本内容
     * @param webhook webhook地址
     */
    void sendText(String text,String webhook);

    /**
     * 发送文本消息
     * @param text 文本内容
     * @param phones 需要@的用户所绑定的手机号
     * @param webhook webhook地址
     */
    void sendText(String text, List phones,String webhook);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy