DeviceManager/DeviceRepair.Models/SFC/System/UserConfirmHistory.cs

49 lines
1.1 KiB
C#
Raw Permalink Normal View History

2024-11-09 04:25:57 +00:00
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; }
}
}