21 lines
463 B
C#
Raw Normal View History

2024-05-16 13:30:30 +08:00
using System.Collections.Generic;
2024-07-01 16:04:10 +08:00
using DOAN.Model;
using DOAN.Model.System;
using DOAN.Model.System.Dto;
2024-05-16 13:30:30 +08:00
2024-07-01 16:04:10 +08:00
namespace DOAN.Service.System.IService
2024-05-16 13:30:30 +08:00
{
/// <summary>
/// 通知公告表service接口
///
2024-07-01 16:04:10 +08:00
/// @author DOAN
2024-05-16 13:30:30 +08:00
/// @date 2021-12-15
/// </summary>
public interface ISysNoticeService : IBaseService<SysNotice>
{
List<SysNotice> GetSysNotices();
PagedInfo<SysNotice> GetPageList(SysNoticeQueryDto parm);
}
}