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
501 B
C#

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