You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Core/Service/Notice/ISysNoticeUserService.cs

17 lines
511 B
C#

using Myshipping.Core.Entity;
2 years ago
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Myshipping.Core.Service;
2 years ago
public interface ISysNoticeUserService
{
Task Add(long noticeId, List<long> noticeUserIdList, NoticeUserStatus noticeUserStatus);
Task<List<SysNoticeUser>> GetNoticeUserListByNoticeId(long noticeId);
Task Read(long noticeId, long userId, NoticeUserStatus status);
Task Update(long noticeId, List<long> noticeUserIdList, NoticeUserStatus noticeUserStatus);
}