using System.Collections.Generic; using System.Threading.Tasks; using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; using ShwasherSys.NotificationInfo.Dto; namespace ShwasherSys.NotificationInfo { public interface IShortMsgDetailAppService : IIwbAsyncCrudAppService { Task> GetAllByUser(PagedRequestDto input); NoticeAlarmDto GetMsgByUser(); ShortMsgDetail ChangeIsRead(EntityDto input); Task SetRead(EntityDto input); Task BatchDelete(EntityDto input); } }