49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace DeviceRepair.Models.SFC.System
|
|
{
|
|
[SugarTable("UserConfirmHistory")]
|
|
public class UserConfirmHistory
|
|
{
|
|
public UserConfirmHistory()
|
|
{
|
|
GUID = Guid.NewGuid();
|
|
cDataBase = "DriveMaintenance";
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tag 表自增长主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "AutoID", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int AutoID { get; set; }
|
|
|
|
public Guid GUID { get; set; }
|
|
|
|
public string cDataBase { get; set; }
|
|
|
|
public string cModel { get; set; }
|
|
|
|
public string cContent { get; set; }
|
|
|
|
public string ConfirmAuth { get; set; }
|
|
|
|
public string UserCode { get; set; }
|
|
|
|
[SugarColumn(IsIgnore = true)]
|
|
public string PassWord { get; set; }
|
|
|
|
public DateTime CreateOn { get; set; }
|
|
|
|
public string ClientIP { get; set; }
|
|
|
|
public string ClientMAC { get; set; }
|
|
|
|
public string ClientName { get; set; }
|
|
|
|
public string Note { get; set; }
|
|
|
|
public bool bSuccess { get; set; }
|
|
}
|
|
}
|