using System;
using SqlSugar;
namespace DeviceRepair.Models.History
{
///
///
///
[SugarTable("FieldsHistory")]
public class FieldsHistory
{
///
///
///
[SugarColumn(ColumnName = "AutoID", IsPrimaryKey = true, IsIdentity = true)]
public int AutoID { get; set; }
///
///
///
[SugarColumn(ColumnName = "FieldID")]
public int FieldID { get; set; }
///
///
///
[SugarColumn(ColumnName = "GUID")]
public Guid? GUID { get; set; }
///
///
///
[SugarColumn(ColumnName = "Operator")]
public int Operator { get; set; }
///
///
///
[SugarColumn(ColumnName = "OperationDate")]
public DateTime OperationDate { get; set; }
///
///
///
[SugarColumn(ColumnName = "FieldCode")]
public string FieldCode { get; set; }
///
///
///
[SugarColumn(ColumnName = "FieldText")]
public string FieldText { get; set; }
///
///
///
[SugarColumn(ColumnName = "FieldValue")]
public string FieldValue { get; set; }
///
///
///
[SugarColumn(ColumnName = "FieldType")]
public string FieldType { get; set; }
///
///
///
[SugarColumn(ColumnName = "Status")]
public bool Status { get; set; }
///
///
///
[SugarColumn(ColumnName = "Description")]
public string Description { get; set; }
///
///
///
[SugarColumn(ColumnName = "CreatBy")]
public int CreatBy { get; set; }
///
///
///
[SugarColumn(ColumnName = "CreatOn")]
public DateTime CreatOn { get; set; }
///
///
///
[SugarColumn(ColumnName = "ModifyBy")]
public int? ModifyBy { get; set; }
///
///
///
[SugarColumn(ColumnName = "ModifyOn")]
public DateTime? ModifyOn { get; set; }
}
}