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 { boolean sendMessage(String releaseNo); boolean sendActionCardMessage() throws Exception; /** * 发送文件消息 * * @param filePath 本地文件路径 * @return 是否发送成功 * @throws Exception 异常 */ boolean sendFileMessage(String filePath) throws Exception; }