南昌市物联网技防平台-公安版
Administrator
2021-06-21 098d606ddd6e9eccf22fe8c5bb703234dbda9614
blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/chatrecords/service/ChatRecordsService.java
@@ -5,6 +5,8 @@
import org.springblade.jfpt.chatrecords.entity.ChatRecords;
import org.springblade.jfpt.chatrecords.vo.ChatRecordsVo;
import java.util.List;
/**
 * @author zhongrj
 * 聊天消息接口层
@@ -26,4 +28,18 @@
    * @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);
}