liusheng
2023-10-19 f80df09d8dee5c731cb42d4e3d18f627e32bdaea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.project.service;
 
import com.ruoyi.project.domain.vo.DingTalkReqVo;
 
/**
 * 宣教分类Service接口
 *
 * @author smartor
 * @date 2023-03-04
 */
public interface DingTalkService {
    /**
     * 发送钉钉消息
     *
     * @param dingTalkReqVo
     */
    Boolean sendNotification(DingTalkReqVo dingTalkReqVo);
}