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