1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 sendDingTalkFifteenMinute() throws Exception;
 
    void sendDingTalkthirtyMinute() throws Exception;
 
    void chatSendMessage() throws Exception;
}