tjx
2025-11-26 b141161014deab6c603f799a41f74e896c503f0a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.gs.xky.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gs.xky.entity.DingtalkInfo;
 
/**
 * @author 28567
 * @description 针对表【DINGTALK_INFO】的数据库操作Service
 * @createDate 2025-06-20 16:12:48
 */
public interface DingtalkInfoService extends IService<DingtalkInfo> {
 
    boolean sendMessage(String releaseNo);
 
    boolean sendActionCardMessage() throws Exception;
 
    /**
     * 发送文件消息
     *
     * @param filePath 本地文件路径
     * @return 是否发送成功
     * @throws Exception 异常
     */
    boolean sendFileMessage(String filePath) throws Exception;
}