YM_School.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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_School")]
  10. public partial class YM_School
  11. {
  12. [Column("ID", IsPrimaryKey = true), AutoIncrement]
  13. public int ID { get; set; }
  14. public string Name { get; set; }
  15. public string Description { get; set; }
  16. public string SchoolBigType { get; set; }
  17. public string SchoolSmallType { get; set; }
  18. public string UserName { get; set; }
  19. public string PassWord { get; set; }
  20. public string CertificateFileID { get; set; }
  21. public int Status { get; set; }
  22. public Nullable<System.DateTime> CreateTime { get; set; }
  23. public Nullable<System.DateTime> UpdateTime { get; set; }
  24. public string Creator { get; set; }
  25. public string Updator { get; set; }
  26. public string FullName { get; set; }
  27. }
  28. public enum SchoolStatus
  29. {
  30. 新用户,
  31. 开放,
  32. 关闭,
  33. 无效
  34. }
  35. }