using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { /// /// 实体类YW_ChiefOfficial 。(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class YW_ChiefOfficial { public YW_ChiefOfficial() { } #region Model private int _id; private int? _sepid; private string _leaderid; private string _leader; private string _coachid1; private string _coach1; private string _coachid2; private string _coach2; private string _coachid3; private string _coach3; private string _coachid4; private string _coach4; private string _watchman; private string _contact; private int? _state; private string _createper; private DateTime? _createdate; /// /// /// [Column("ID", IsPrimaryKey = true), AutoIncrement] public int ID { set { _id = value; } get { return _id; } } /// /// 体育比赛 /// public int? SEPID { set { _sepid = value; } get { return _sepid; } } /// /// 学校ID /// public int? Schoolid { get; set; } /// /// /// public string LeaderID { set { _leaderid = value; } get { return _leaderid; } } /// /// /// public string Leader { set { _leader = value; } get { return _leader; } } /// /// /// public string CoachID1 { set { _coachid1 = value; } get { return _coachid1; } } /// /// /// public string Coach1 { set { _coach1 = value; } get { return _coach1; } } /// /// /// public string CoachID2 { set { _coachid2 = value; } get { return _coachid2; } } /// /// /// public string Coach2 { set { _coach2 = value; } get { return _coach2; } } /// /// /// public string CoachID3 { set { _coachid3 = value; } get { return _coachid3; } } /// /// /// public string Coach3 { set { _coach3 = value; } get { return _coach3; } } /// /// /// public string CoachID4 { set { _coachid4 = value; } get { return _coachid4; } } /// /// /// public string Coach4 { set { _coach4 = value; } get { return _coach4; } } /// /// /// public string Watchman { set { _watchman = value; } get { return _watchman; } } /// /// 联系方式 /// public string Contact { set { _contact = value; } get { return _contact; } } public int? LeaderNum { get; set; } public int? CoachNum { get; set; } /// /// 状态 /// public int? State { set { _state = value; } get { return _state; } } /// /// 创建者 /// public string Createper { set { _createper = value; } get { return _createper; } } /// /// 创建时间 /// public DateTime? CreateDate { set { _createdate = value; } get { return _createdate; } } #endregion Model } }