啊鑫
2024-11-18 f61d65290e3d7ba23432a9a017065af0e0636a1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.gs.dingtalk.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gs.dingtalk.entity.SendDingtalk;
 
public interface SendDingtalkService extends IService<SendDingtalk> {
 
 
    void getDingTalkUserId() throws Exception;
 
    void sendDingTalkFiveMinute() throws Exception;
 
    void sendDingTalkthirtyMinute() throws Exception;
 
    void chatSendMessage() throws Exception;
}