using iWare.Wms.Core;
|
using Microsoft.AspNetCore.Mvc;
|
|
namespace iWare.Wms.Application.Notice
|
{
|
public interface ISysNoticeService
|
{
|
Task AddNotice(AddNoticeInput input);
|
|
Task ChangeStatus(ChangeStatusNoticeInput input);
|
|
Task DeleteNotice(DeleteNoticeInput input);
|
|
Task<NoticeDetailOutput> GetNotice([FromQuery] QueryNoticeInput input);
|
|
Task<PageResult<SysNotice>> QueryNoticePageList([FromQuery] NoticePageInput input);
|
|
Task<PageResult<NoticeReceiveOutput>> ReceivedNoticePageList([FromQuery] NoticePageInput input);
|
|
Task UpdateNotice(UpdateNoticeInput input);
|
|
Task<dynamic> UnReadNoticeList([FromQuery] NoticeInput input);
|
}
|
}
|