44 lines
986 B
C#
44 lines
986 B
C#
|
using SqlSugar;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace DeviceRepair.Models.History
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// UserPwdErrorLogInfo
|
|||
|
/// </summary>
|
|||
|
[SugarTable("UserPwdErrorLog")]
|
|||
|
public class UserPwdErrorLogInfo
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 默认构造函数(需要初始化属性的在此处理)
|
|||
|
/// </summary>
|
|||
|
public UserPwdErrorLogInfo()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#region Property Members
|
|||
|
|
|||
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|||
|
public virtual int AutoID { get; set; }
|
|||
|
|
|||
|
public virtual string LoginCode { get; set; }
|
|||
|
|
|||
|
public virtual string TryCount { get; set; }
|
|||
|
|
|||
|
public virtual DateTime OperationDate { get; set; }
|
|||
|
|
|||
|
public virtual int OperationUser { get; set; }
|
|||
|
|
|||
|
public virtual string OperationUserName { get; set; }
|
|||
|
|
|||
|
public virtual string OperationIP { get; set; }
|
|||
|
|
|||
|
public virtual string OperationComputer { get; set; }
|
|||
|
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
}
|
|||
|
}
|