INoteService.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using GxPress.Common.Page;
  6. using GxPress.Request.App.Note;
  7. using GxPress.Result.App.Note;
  8. namespace GxPress.Service.Interface.Note
  9. {
  10. public interface INoteService : IService
  11. {
  12. Task<bool> InsertNoteAsync(NoteInRequest request);
  13. Task<PagedList<NotePageListRequest>> NotePageListAsync(NoteSearchPageListRequest request);
  14. /// <summary>
  15. /// 获取笔记详情
  16. /// </summary>
  17. /// <param name="id"></param>
  18. /// <param name="userId"></param>
  19. /// <returns></returns>
  20. Task<NoteDetailResult> GetNoteDetailAsync(int id,int userId);
  21. /// <summary>
  22. /// 修改笔记
  23. /// </summary>
  24. /// <param name="note"></param>
  25. /// <returns></returns>
  26. Task<bool> UpdateNoteAsync(Entity.Note.Note note);
  27. /// <summary>
  28. /// 删除笔记
  29. /// </summary>
  30. /// <param name="id"></param>
  31. /// <returns></returns>
  32. Task<bool> DeleteAsync(int id,int userId);
  33. }
  34. }