陈昶聿
9 天以前 d49c2dbfbec7fef674e933e82a72a7d4aff1028c
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);
}