key1_beacon_api/ARW.Repository/System/SysNoticeRepository.cs
2023-06-02 21:15:33 +08:00

21 lines
464 B
C#

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