yxh
yxh
2024-01-04 a88e19be56fab4f06aae0248575b55fed41eaa1e
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);
}