IChatRecordRepository.cs 799 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using GxPress.Request.App.ChatRecord;
  6. using GxPress.Result.App.ChatRecord;
  7. using Datory;
  8. using GxPress.Common.Page;
  9. using GxPress.Entity;
  10. namespace GxPress.Repository.Interface
  11. {
  12. /// <summary>
  13. ///
  14. /// </summary>
  15. public interface IChatRecordRepository : IRepository
  16. {
  17. Task<bool> InsertAsync(ChatRecordInRequest request);
  18. /// <summary>
  19. /// 获取聊天历史
  20. /// </summary>
  21. /// <param name="request"></param>
  22. /// <returns></returns>
  23. Task<PagedList<ChatRecordSearchHistoryResult>> SearchChatRecordHistoryAsync(
  24. ChatRecordSearchHistoryRequest request);
  25. Task<IEnumerable<ChatRecord>> GetAllAsync();
  26. }
  27. }