12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using GxPress.Entity;
- using GxPress.Request.NoticeFolder;
- using GxPress.Result.NoticeFolder;
- using Datory;
- namespace GxPress.Repository.Interface
- {
- public interface INoticeFolderRepository : IRepository
- {
-
-
-
-
-
- Task<bool> InsertAsync(NoticeFolderInRequest request);
-
-
-
-
-
- Task<bool> DeleteAsync(int id);
-
-
-
-
-
- Task<bool> UpdateAsync(NoticeFolderUpRequest request);
-
-
-
-
-
- Task<bool> InsertNoticeAsync(NoticeFolderInNoticeRequest request);
-
-
-
-
-
- Task<bool> NoticeFolderDeleteNoticeAsync(NoticeFolderDeleteNoticeRequest request);
-
-
-
-
-
- Task<IEnumerable<NoticeFolderFindResult>> GetNoticeFolderByUserIdAsync(NoticeFolderFindRequest request);
-
-
-
-
-
- Task<bool> SetNoticeFolderIsTopAsync(NoticeFolderFindRequest request);
- }
- }
|