12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using GxPress.Common.Page;
- using GxPress.Request.App.Note;
- using GxPress.Request.Web;
- using GxPress.Result.App.Note;
- using GxPress.Result.Web;
- namespace GxPress.Service.Interface.Note
- {
- public interface INoteService : IService
- {
- Task<bool> InsertNoteAsync(NoteInRequest request);
- Task<PagedList<NotePageListRequest>> NotePageListAsync(NoteSearchPageListRequest request);
-
-
-
-
-
-
- Task<NoteDetailResult> GetNoteDetailAsync(int id,int userId);
-
-
-
-
-
- Task<bool> UpdateNoteAsync(Entity.Note.Note note);
-
-
-
-
-
- Task<bool> DeleteAsync(int id,int userId);
-
-
-
-
-
- Task<PagedList<NoteUserExtractResult>> GetAllByUserId(NoteUserRequest request);
- }
- }
|