using Admin.NET.Core; namespace Admin.NET.Application.Notice { /// /// /// public interface ISysNoticeUserService { /// /// /// /// /// /// /// Task Add(long noticeId, List noticeUserIdList, NoticeUserStatus noticeUserStatus); /// /// /// /// /// Task> GetNoticeUserListByNoticeId(long noticeId); /// /// /// /// /// /// /// Task Read(long noticeId, long userId, NoticeUserStatus status); /// /// /// /// /// /// /// Task Update(long noticeId, List noticeUserIdList, NoticeUserStatus noticeUserStatus); } }