using System;
using SqlSugar;
namespace DeviceRepair.Models.Logs
{
///
///
///
[SugarTable("FieldLog")]
public class FieldLog
{
///
///
///
[SugarColumn(ColumnName = "LogID", IsPrimaryKey = true, IsIdentity = true)]
public int LogID { get; set; }
///
///
/// 默认值: (newid())
///
[SugarColumn(ColumnName = "GUID")]
public Guid GUID { get; set; }
///
///
///
[SugarColumn(ColumnName = "FieldHisGuid")]
public Guid FieldHisGuid { get; set; }
///
///
///
[SugarColumn(ColumnName = "OperationType")]
public string OperationType { get; set; }
///
///
///
[SugarColumn(ColumnName = "Operator")]
public int Operator { get; set; }
///
///
///
[SugarColumn(ColumnName = "OperationDate")]
public DateTime OperationDate { get; set; }
///
///
///
[SugarColumn(ColumnName = "OperationIP")]
public string OperationIP { get; set; }
///
///
///
[SugarColumn(ColumnName = "OperationComputer")]
public string OperationComputer { get; set; }
}
}