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);
|
}
|