Helius
2022-03-09 38179780b2f728abe6dd0e5aaa284c6ee6aa8380
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.xcong.excoin.modules.otc.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.response.Result;
import com.xcong.excoin.modules.otc.dto.*;
import com.xcong.excoin.modules.otc.entity.OtcMsgUserListEntity;
import com.xcong.excoin.modules.otc.vo.ChatBoxVo;
import com.xcong.excoin.modules.otc.vo.MsgListVo;
 
public interface OtcMsgService extends IService<OtcMsgUserListEntity> {
 
    IPage<MsgListVo> getMsgList(MsgListDto msgListDto);
 
    Result getChatBox(ChatBoxDto chatBoxDto);
 
    Result sendMsg(SendMsgDto sendMsgDto);
 
    Result getChatBoxConnect(ConnectDto connectDto);
 
    Result getChatOrder(ChatOrderDto chatOrderDto);
}