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_Sporter")] public class YM_Sporter { [Column("ID", IsPrimaryKey = true), AutoIncrement] public int ID { get; set; } public string Name { get; set; } public string Sex { get; set; } public string RegNo { get; set; } public string IDCard { get; set; } public string StudentNo { get; set; } public string Project { get; set; } public string Grade { get; set; } public string BirthAddress { get; set; } public string BirthType { get; set; } public DateTime? Birthday { get; set; } public string Address { get; set; } public int CoachID { get; set; } public int Status { get; set; } public string SporterPicUrl { get; set; } public string StudentNoPicUrl { 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 class SporterMatch : YM_Sporter { /// /// 报名ID /// public string MID { get; set; } /// /// 赛事ID /// public string SEPID { get; set; } } public class SporterInfo : YM_Sporter { /// /// 参赛项目 /// public string ItemList { get; set; } } }