SysNotice Implement

This commit is contained in:
samisgod
2021-12-15 16:12:22 +08:00
committed by 不做码农
parent 9b35a31306
commit 1f13a996c0
9 changed files with 312 additions and 22 deletions

View File

@@ -0,0 +1,15 @@
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>
{
}
}