YM_Coach.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  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_Coach")]
  10. public partial class YM_Coach
  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 int SchoolID { get; set; }
  17. public string Title { get; set; }
  18. public string Project { get; set; }
  19. public string IDCard { get; set; }
  20. public Nullable<System.DateTime> CreateTime { get; set; }
  21. public Nullable<System.DateTime> UpdateTime { get; set; }
  22. public string Creator { get; set; }
  23. public string Updator { get; set; }
  24. public string MobilePhone { get; set; }
  25. public int Status { get; set; }
  26. public string SchoolName { get; set; }
  27. }
  28. public class YM_CoachExted : YM_Coach
  29. {
  30. public string[] Projects { get; set; }
  31. }
  32. }