2024-07-01 16:04:40 +08:00

21 lines
463 B
C#

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