2021-12-15 16:12:22 +08:00
|
|
|
using System;
|
2022-03-01 14:04:21 +08:00
|
|
|
using System.Collections.Generic;
|
2022-03-06 14:26:05 +08:00
|
|
|
using ZR.Model.System;
|
2021-12-15 16:12:22 +08:00
|
|
|
|
|
|
|
|
namespace ZR.Service.System.IService
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知公告表service接口
|
|
|
|
|
///
|
|
|
|
|
/// @author zr
|
|
|
|
|
/// @date 2021-12-15
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ISysNoticeService: IBaseService<SysNotice>
|
|
|
|
|
{
|
2022-03-01 14:04:21 +08:00
|
|
|
List<SysNotice> GetSysNotices();
|
2021-12-15 16:12:22 +08:00
|
|
|
}
|
|
|
|
|
}
|