using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using GxPress.Request.App.ChatRecord;
using GxPress.Result.App.ChatRecord;
using Datory;
using GxPress.Common.Page;
using GxPress.Entity;
namespace GxPress.Repository.Interface
{
///
///
///
public interface IChatRecordRepository : IRepository
{
Task InsertAsync(ChatRecordInRequest request);
///
/// 获取聊天历史
///
///
///
Task> SearchChatRecordHistoryAsync(
ChatRecordSearchHistoryRequest request);
Task> GetAllAsync();
}
}