YM_Judge.cs 990 B

12345678910111213141516171819202122232425262728293031
  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_Judge")]
  10. public partial class YM_Judge
  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 IDCard { get; set; }
  17. public string JudgmentNo { get; set; }
  18. public string Project { get; set; }
  19. public string Level { get; set; }
  20. public int Status { get; set; }
  21. public Nullable<System.DateTime> CreateTime { get; set; }
  22. public Nullable<System.DateTime> UpdateTime { get; set; }
  23. public string Creator { get; set; }
  24. public string Updator { get; set; }
  25. public int SchoolID { get; set; }
  26. public string SchoolName { get; set; }
  27. public string Contact { get; set; }
  28. }
  29. }