16 lines
281 B
C#
16 lines
281 B
C#
|
|
using System;
|
||
|
|
using ZR.Model.Models;
|
||
|
|
|
||
|
|
namespace ZR.Service.System.IService
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 通知公告表service接口
|
||
|
|
///
|
||
|
|
/// @author zr
|
||
|
|
/// @date 2021-12-15
|
||
|
|
/// </summary>
|
||
|
|
public interface ISysNoticeService: IBaseService<SysNotice>
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|