SysNotice Implement

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

View File

@@ -0,0 +1,20 @@
using System;
using Infrastructure.Attribute;
using ZR.Repository.System;
using ZR.Model.Models;
namespace ZR.Repository.System
{
/// <summary>
/// 通知公告表仓储
///
/// @author zr
/// @date 2021-12-15
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class SysNoticeRepository : BaseRepository<SysNotice>
{
#region
#endregion
}
}