1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using GxPress.Common.Page;
- using GxPress.Request.App.Note;
- using GxPress.Result.App.Note;
- 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);
- }
- }
|