2025-10-21 13:38:23 +08:00

21 lines
494 B
C#

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