shgx_tz_mom/ZR.Service/System/IService/ISysNoticeService.cs

20 lines
419 B
C#
Raw Normal View History

2023-07-23 16:28:56 +08:00
using ZR.Model;
2022-03-06 14:26:05 +08:00
using ZR.Model.System;
2023-07-23 16:28:56 +08:00
using ZR.Model.System.Dto;
2021-12-15 16:12:22 +08:00
namespace ZR.Service.System.IService
{
/// <summary>
/// 通知公告表service接口
///
/// @author zr
/// @date 2021-12-15
/// </summary>
2023-07-23 16:28:56 +08:00
public interface ISysNoticeService : IBaseService<SysNotice>
2021-12-15 16:12:22 +08:00
{
List<SysNotice> GetSysNotices();
2023-07-23 16:28:56 +08:00
PagedInfo<SysNotice> GetPageList(SysNoticeQueryDto parm);
2021-12-15 16:12:22 +08:00
}
}