20 lines
481 B
C#
20 lines
481 B
C#
using System;
|
|
using Infrastructure.Attribute;
|
|
using ARW.Repository.System;
|
|
using ARW.Model.Models.Business.Advertisement.Notices;
|
|
|
|
namespace ARW.Repository.Business.Advertisement.Notices
|
|
{
|
|
/// <summary>
|
|
/// 公告仓储
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-09
|
|
/// </summary>
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
public class NoticeRepository : BaseRepository<Notice>
|
|
{
|
|
#region 业务逻辑代码
|
|
#endregion
|
|
}
|
|
} |