ES_EducationScheduling.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace EMIS.Entities
  10. {
  11. #pragma warning disable 1573
  12. using System;
  13. using System.Collections.Generic;
  14. /// <summary>
  15. /// ES_EducationScheduling
  16. /// </summary>
  17. public partial class ES_EducationScheduling
  18. {
  19. public ES_EducationScheduling()
  20. {
  21. this.ES_EducationSchedulingTeacher = new HashSet<ES_EducationSchedulingTeacher>();
  22. this.ES_EducationSchedulingWeekNum = new HashSet<ES_EducationSchedulingWeekNum>();
  23. }
  24. /// <summary>
  25. /// EducationSchedulingID
  26. /// </summary>
  27. public System.Guid EducationSchedulingID { get; set; }
  28. /// <summary>
  29. /// SchoolyearID
  30. /// </summary>
  31. public Nullable<System.Guid> SchoolyearID { get; set; }
  32. /// <summary>
  33. /// EducationSchedulingClassID
  34. /// </summary>
  35. public Nullable<System.Guid> EducationSchedulingClassID { get; set; }
  36. /// <summary>
  37. /// Weekday
  38. /// </summary>
  39. public Nullable<int> Weekday { get; set; }
  40. /// <summary>
  41. /// CoursesTimeID
  42. /// </summary>
  43. public Nullable<System.Guid> CoursesTimeID { get; set; }
  44. /// <summary>
  45. /// ClassroomID
  46. /// </summary>
  47. public Nullable<System.Guid> ClassroomID { get; set; }
  48. /// <summary>
  49. /// IsAuto
  50. /// </summary>
  51. public Nullable<bool> IsAuto { get; set; }
  52. /// <summary>
  53. /// RecordStatus
  54. /// </summary>
  55. public Nullable<int> RecordStatus { get; set; }
  56. /// <summary>
  57. /// CreateTime
  58. /// </summary>
  59. public Nullable<System.DateTime> CreateTime { get; set; }
  60. /// <summary>
  61. /// CreateUserID
  62. /// </summary>
  63. public Nullable<System.Guid> CreateUserID { get; set; }
  64. /// <summary>
  65. /// ModifyUserID
  66. /// </summary>
  67. public Nullable<System.Guid> ModifyUserID { get; set; }
  68. /// <summary>
  69. /// ModifyTime
  70. /// </summary>
  71. public Nullable<System.DateTime> ModifyTime { get; set; }
  72. /// <summary>
  73. /// CF_Classroom
  74. /// </summary>
  75. public virtual CF_Classroom CF_Classroom { get; set; }
  76. /// <summary>
  77. /// CF_Schoolyear
  78. /// </summary>
  79. public virtual CF_Schoolyear CF_Schoolyear { get; set; }
  80. /// <summary>
  81. /// EM_CoursesTime
  82. /// </summary>
  83. public virtual EM_CoursesTime EM_CoursesTime { get; set; }
  84. /// <summary>
  85. /// EM_EducationSchedulingClass
  86. /// </summary>
  87. public virtual EM_EducationSchedulingClass EM_EducationSchedulingClass { get; set; }
  88. /// <summary>
  89. /// ES_EducationSchedulingTeacher
  90. /// </summary>
  91. public virtual HashSet<ES_EducationSchedulingTeacher> ES_EducationSchedulingTeacher { get; set; }
  92. /// <summary>
  93. /// ES_EducationSchedulingWeekNum
  94. /// </summary>
  95. public virtual HashSet<ES_EducationSchedulingWeekNum> ES_EducationSchedulingWeekNum { get; set; }
  96. }
  97. }