YM_Sporter.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. using Ant.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace MES.Production.Entity
  8. {
  9. [Table("YM_Sporter")]
  10. public class YM_Sporter
  11. {
  12. [Column("ID", IsPrimaryKey = true), AutoIncrement]
  13. public int ID { get; set; }
  14. public string Name { get; set; }
  15. public string Sex { get; set; }
  16. public string RegNo { get; set; }
  17. public string IDCard { get; set; }
  18. public string StudentNo { get; set; }
  19. public string Project { get; set; }
  20. public string Grade { get; set; }
  21. public string BirthAddress { get; set; }
  22. public string BirthType { get; set; }
  23. public DateTime? Birthday { get; set; }
  24. public string Address { get; set; }
  25. public int CoachID { get; set; }
  26. public int Status { get; set; }
  27. public string SporterPicUrl { get; set; }
  28. public string StudentNoPicUrl { get; set; }
  29. public Nullable<System.DateTime> CreateTime { get; set; }
  30. public Nullable<System.DateTime> UpdateTime { get; set; }
  31. public string Creator { get; set; }
  32. public string Updator { get; set; }
  33. public int SchoolID { get; set; }
  34. public string SchoolName { get; set; }
  35. }
  36. public class SporterMatch : YM_Sporter
  37. {
  38. /// <summary>
  39. /// 报名ID
  40. /// </summary>
  41. public string MID
  42. {
  43. get; set;
  44. }
  45. /// <summary>
  46. /// 赛事ID
  47. /// </summary>
  48. public string SEPID
  49. {
  50. get; set;
  51. }
  52. }
  53. public class SporterInfo : YM_Sporter
  54. {
  55. /// <summary>
  56. /// 参赛项目
  57. /// </summary>
  58. public string ItemList
  59. {
  60. get; set;
  61. }
  62. }
  63. }