shgx_tz_mom/ZR.Repository/System/SysNoticeRepository.cs

21 lines
460 B
C#
Raw Normal View History

2021-12-15 16:12:22 +08:00
using System;
using Infrastructure.Attribute;
using ZR.Repository.System;
using ZR.Model.Models;
2022-03-06 14:26:05 +08:00
using ZR.Model.System;
2021-12-15 16:12:22 +08:00
namespace ZR.Repository.System
{
/// <summary>
/// 通知公告表仓储
///
/// @author zr
/// @date 2021-12-15
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class SysNoticeRepository : BaseRepository<SysNotice>
{
#region
#endregion
}
}