using DOAN.Model; using DOAN.Model.System; using DOAN.Model.System.Dto; namespace DOAN.ServiceCore.Services { /// /// 通知公告表service接口 /// /// @author DOAN /// @date 2021-12-15 /// public interface ISysNoticeService : IBaseService { List GetSysNotices(); PagedInfo GetPageList(SysNoticeQueryDto parm); PagedInfo ExportList(SysNoticeQueryDto parm); } }