123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- 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<System.DateTime> CreateTime { get; set; }
- public Nullable<System.DateTime> 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
- {
- /// <summary>
- /// 报名ID
- /// </summary>
- public string MID
- {
- get; set;
- }
- /// <summary>
- /// 赛事ID
- /// </summary>
- public string SEPID
- {
- get; set;
- }
- }
- public class SporterInfo : YM_Sporter
- {
- /// <summary>
- /// 参赛项目
- /// </summary>
- public string ItemList
- {
- get; set;
- }
- }
- }
|