陈昶聿
3 天以前 8f3649533c9a4062cf00f583dfef96dcb7837514
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.common.core.service;
 
import com.ruoyi.common.core.domain.DingTalkReqVo;
 
/**
 * 钉钉消息发送服务接口(公共层,供ruoyi-system等基础模块使用)
 */
public interface IDingTalkService {
    /**
     * 发送钉钉消息
     *
     * @param dingTalkReqVo 发送内容
     * @return 是否成功
     */
    Boolean sendNotification(DingTalkReqVo dingTalkReqVo);
}