Pu Zhibing
3 天以前 2608fc201aed29d87f0edcfebcc57538b15dd2f6
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ruoyi.integration.mongodb.service;
 
import com.ruoyi.integration.api.model.Pong;
import com.ruoyi.integration.mongodb.base.BaseService;
 
/**
 * 心跳包应答接口
 */
public interface PongService extends BaseService<Pong> {
    
    void delPong();
 
}