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