20 lines
519 B
C#
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
|
|
}
|
|
} |