tjx
2025-12-02 ad9b7ca64a1967348c5ff776946e97a57efaa5bc
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;
}