key1_beacon_api/ARW.Repository/Business/Custom/CustomerLoginLogs/CustomerLoginLogRepository.cs
2023-11-22 12:17:14 +08:00

20 lines
519 B
C#

using System;
using Infrastructure.Attribute;
using ARW.Repository.System;
using ARW.Model.Models.Business.Custom.CustomerLoginLogs;
namespace ARW.Repository.Business.Custom.CustomerLoginLogs
{
/// <summary>
/// 客户登录日志仓储
///
/// @author lwh
/// @date 2023-11-21
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class CustomerLoginLogRepository : BaseRepository<CustomerLoginLog>
{
#region
#endregion
}
}