using SqlSugar;
using System;
namespace DeviceRepair.Models
{
[SugarTable("DeviceWarrantyEvaluator")]
public class DeviceWarrantyEvaluatorInfo
{
///
/// 设备维修单评估信息主键编号
///
[SugarColumn(ColumnName = "AutoID", IsPrimaryKey = true, IsIdentity = true)]
public int AutoID { get; set; }
///
/// 唯一编码
/// 默认值: (newid())
///
[SugarColumn(ColumnName = "GUID")]
public Guid Guid { get; set; }
///
///
///
[SugarColumn(ColumnName = "FormID")]
public int FormID { get; set; }
///
///
///
[SugarColumn(ColumnName = "EvaluatorCode")]
public string EvaluatorCode { get; set; }
///
///
///
[SugarColumn(ColumnName = "Description")]
public string Description { get; set; }
///
///
///
[SugarColumn(ColumnName = "CreatOn")]
public DateTime CreatOn { get; set; }
///
///
///
[SugarColumn(ColumnName = "CreateBy")]
public int CreateBy { get; set; }
///
///
///
[SugarColumn(ColumnName = "CreatorName")]
public string CreatorName { get; set; }
}
}