啊鑫
2024-11-18 16bbd0a2e072bafea1dc254fbbcf86768fb3ea48
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;
}