init
This commit is contained in:
20
DOAN.ServiceCore/Services/IService/ISysNoticeService.cs
Normal file
20
DOAN.ServiceCore/Services/IService/ISysNoticeService.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using DOAN.Model;
|
||||
using DOAN.Model.System;
|
||||
using DOAN.Model.System.Dto;
|
||||
|
||||
namespace DOAN.ServiceCore.Services
|
||||
{
|
||||
/// <summary>
|
||||
/// 通知公告表service接口
|
||||
///
|
||||
/// @author DOAN
|
||||
/// @date 2021-12-15
|
||||
/// </summary>
|
||||
public interface ISysNoticeService : IBaseService<SysNotice>
|
||||
{
|
||||
List<SysNotice> GetSysNotices();
|
||||
|
||||
PagedInfo<SysNotice> GetPageList(SysNoticeQueryDto parm);
|
||||
PagedInfo<SysNoticeDto> ExportList(SysNoticeQueryDto parm);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user