49 lines
1.0 KiB
C#
49 lines
1.0 KiB
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ARW.Model.Vo.Business.Custom.CustomerLoginLogs
|
|
{
|
|
/// <summary>
|
|
/// 客户登录日志展示对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-11-21
|
|
/// </summary>
|
|
public class CustomerLoginLogVo
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
public int CustomerLoginLogId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long CustomerLoginLogGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :客户guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long CustomerGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 用户名称
|
|
/// </summary>
|
|
public string CustomerNickName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 登录时间
|
|
/// </summary>
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
}
|