xiaoyong931011
2021-05-26 83117633ed965e612c90e29d01610bbbd5ed6c42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.ChatBoxDto;
import com.xcong.excoin.modules.otc.dto.MsgListDto;
import com.xcong.excoin.modules.otc.dto.SendMsgDto;
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);
}