using Myshipping.Core.Entity; using System.Collections.Generic; using System.Threading.Tasks; namespace Myshipping.Core.Service; 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); }