using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { [Table("YM_Judge")] public partial class YM_Judge { [Column("ID", IsPrimaryKey = true), AutoIncrement] public int ID { get; set; } public string Name { get; set; } public string Sex { get; set; } public string IDCard { get; set; } public string JudgmentNo { get; set; } public string Project { get; set; } public string Level { get; set; } public int Status { get; set; } public Nullable CreateTime { get; set; } public Nullable UpdateTime { get; set; } public string Creator { get; set; } public string Updator { get; set; } public int SchoolID { get; set; } public string SchoolName { get; set; } public string Contact { get; set; } } }