| | |
| | | import org.springblade.jfpt.chatrecords.entity.ChatRecords; |
| | | import org.springblade.jfpt.chatrecords.vo.ChatRecordsVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhongrj |
| | | * 聊天消息接口层 |
| | |
| | | * @return |
| | | */ |
| | | IPage<ChatRecordsVo> getChatListPage(IPage<ChatRecordsVo> page, ChatRecords chatRecords); |
| | | |
| | | /** |
| | | * 查询当前用户的聊天列表(不分页) |
| | | * @param chatRecords 消息记录对象 |
| | | * @return |
| | | */ |
| | | List<ChatRecordsVo> getChatList(ChatRecords chatRecords); |
| | | |
| | | /** |
| | | * 查询单聊消息记录 (不分页) |
| | | * @param chatRecords 消息记录对象 |
| | | * @return |
| | | */ |
| | | List<ChatRecords> selectChatlist(ChatRecords chatRecords); |
| | | } |