using SqlSugar;
using System;
namespace DeviceRepair.Models.SFC
{
///
///
///
[SugarTable("Staffs")]
public class StaffsInfo
{
///
/// 0:QE 1:PE 2:ME
///
[SugarColumn(ColumnName = "GUID", IsPrimaryKey = true)]
public Guid Guid { get; set; }
///
///
///
[SugarColumn(ColumnName = "Post")]
public string Post { get; set; }
///
///
///
[SugarColumn(ColumnName = "Image")]
public string Image { get; set; }
///
///
///
[SugarColumn(ColumnName = "Code")]
public string Code { get; set; }
///
///
///
[SugarColumn(ColumnName = "Name")]
public string Name { get; set; }
///
///
///
[SugarColumn(ColumnName = "Telephone")]
public string Telephone { get; set; }
///
///
///
[SugarColumn(ColumnName = "EMail")]
public string EMail { get; set; }
///
///
///
[SugarColumn(ColumnName = "Status")]
public string Status { get; set; }
///
///
///
[SugarColumn(ColumnName = "CreateBy")]
public string CreateBy { get; set; }
///
///
///
[SugarColumn(ColumnName = "CreateOn")]
public DateTime CreateOn { get; set; }
///
///
///
[SugarColumn(ColumnName = "ModifyBy")]
public string ModifyBy { get; set; }
///
///
///
[SugarColumn(ColumnName = "ModifyOn")]
public DateTime? ModifyOn { get; set; }
}
}