INoticeRepository.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Common.Page;
  4. using GxPress.Entity;
  5. using GxPress.Request.Notice;
  6. using GxPress.Result.Notice;
  7. using Datory;
  8. using GxPress.Result.Job;
  9. using SqlKata;
  10. namespace GxPress.Repository.Interface
  11. {
  12. public interface INoticeRepository : IRepository
  13. {
  14. Task<Notice> GetAsync(SqlKata.Query query);
  15. Task<Notice> GetAsync(int id);
  16. Task<int> InsertAsync(NoticeInRequest request);
  17. /// <summary>
  18. /// 通知查询
  19. /// </summary>
  20. /// <param name="request"></param>
  21. /// <returns></returns>
  22. Task<PagedList<Notice>> GetNoticeByUserIdAsync(NoticePageSearchRequest request);
  23. /// <summary>
  24. /// 管理员删除通知
  25. /// </summary>
  26. /// <param name="id"></param>
  27. /// <returns></returns>
  28. Task<bool> AdminDeleteAsync(int id);
  29. /// <summary>
  30. /// 自己删除
  31. /// </summary>
  32. /// <param name="request"></param>
  33. /// <returns></returns>
  34. Task<bool> DeleteAsync(NoticeDeRequest request);
  35. Task<bool> DeleteAsync(SqlKata.Query query);
  36. /// <summary>
  37. /// 获取通知列表
  38. /// </summary>
  39. /// <param name="request"></param>
  40. /// <returns></returns>
  41. Task<PagedList<NoticeListPageResult>> GetNoticeListPageAsync(SqlKata.Query query,SqlKata.Query countQuery);
  42. /// <summary>
  43. /// 恢复删除的通知
  44. /// </summary>
  45. /// <param name="request"></param>
  46. /// <returns></returns>
  47. Task<bool> RecoverDeleteAsync(NoticeDeRequest request);
  48. /// <summary>
  49. /// 修改通知
  50. /// </summary>
  51. /// <param name="notice"></param>
  52. /// <returns></returns>
  53. Task<bool> UpdateNoticeAsync(Notice notice);
  54. Task<PagedList<NoticeListPageResult>> GetAdminNoticeByUserIdAsync(NoticePageSearchRequest request);
  55. Task<IEnumerable<Notice>> GetAllAsync();
  56. Task<List<JobNoticeResult>> ElasticSearchNotice();
  57. /// <summary>
  58. /// 通知修改
  59. /// </summary>
  60. /// <param name="id"></param>
  61. /// <param name="request"></param>
  62. /// <returns></returns>
  63. Task<bool> UpdateAsync(SqlKata.Query query);
  64. Task<IEnumerable<Notice>> GetAllAsync(Query query);
  65. }
  66. }