using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.SysLog;
///
/// 登录日记输出.
///
[SuppressSniffer]
public class LogLoginOutput
{
///
/// 主键.
///
public string id { get; set; }
///
/// 登录时间.
///
public DateTime? creatorTime { get; set; }
///
/// 登录用户.
///
public string userName { get; set; }
///
/// 登录IP.
///
public string ipaddress { get; set; }
///
/// 登录摘要.
///
public string platForm { get; set; }
}