CF_Schoolyear.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. /// CF_Schoolyear
  16. /// </summary>
  17. public partial class CF_Schoolyear
  18. {
  19. public CF_Schoolyear()
  20. {
  21. this.CF_Grademajor = new HashSet<CF_Grademajor>();
  22. this.CF_Recruitstudents = new HashSet<CF_Recruitstudents>();
  23. this.ER_CertisfierDistribute = new HashSet<ER_CertisfierDistribute>();
  24. this.ER_ProjectScore = new HashSet<ER_ProjectScore>();
  25. this.EX_ExaminationBatch = new HashSet<EX_ExaminationBatch>();
  26. }
  27. /// <summary>
  28. /// SchoolyearID
  29. /// </summary>
  30. public System.Guid SchoolyearID { get; set; }
  31. /// <summary>
  32. /// Code
  33. /// </summary>
  34. public string Code { get; set; }
  35. /// <summary>
  36. /// Years
  37. /// </summary>
  38. public int Years { get; set; }
  39. /// <summary>
  40. /// SchoolcodeID
  41. /// </summary>
  42. public int SchoolcodeID { get; set; }
  43. /// <summary>
  44. /// WeeksNum
  45. /// </summary>
  46. public int WeeksNum { get; set; }
  47. /// <summary>
  48. /// FirstWeek
  49. /// </summary>
  50. public System.DateTime FirstWeek { get; set; }
  51. /// <summary>
  52. /// IsCurrent
  53. /// </summary>
  54. public bool IsCurrent { get; set; }
  55. /// <summary>
  56. /// WeekDays
  57. /// </summary>
  58. public int WeekDays { get; set; }
  59. /// <summary>
  60. /// RecordStatus
  61. /// </summary>
  62. public Nullable<int> RecordStatus { get; set; }
  63. /// <summary>
  64. /// CreateTime
  65. /// </summary>
  66. public Nullable<System.DateTime> CreateTime { get; set; }
  67. /// <summary>
  68. /// CreateUserID
  69. /// </summary>
  70. public Nullable<System.Guid> CreateUserID { get; set; }
  71. /// <summary>
  72. /// ModifyUserID
  73. /// </summary>
  74. public Nullable<System.Guid> ModifyUserID { get; set; }
  75. /// <summary>
  76. /// ModifyTime
  77. /// </summary>
  78. public Nullable<System.DateTime> ModifyTime { get; set; }
  79. /// <summary>
  80. /// Value
  81. /// </summary>
  82. public Nullable<int> Value { get; set; }
  83. /// <summary>
  84. /// CF_Grademajor
  85. /// </summary>
  86. public virtual HashSet<CF_Grademajor> CF_Grademajor { get; set; }
  87. /// <summary>
  88. /// CF_Recruitstudents
  89. /// </summary>
  90. public virtual HashSet<CF_Recruitstudents> CF_Recruitstudents { get; set; }
  91. /// <summary>
  92. /// ER_CertisfierDistribute
  93. /// </summary>
  94. public virtual HashSet<ER_CertisfierDistribute> ER_CertisfierDistribute { get; set; }
  95. /// <summary>
  96. /// ER_ProjectScore
  97. /// </summary>
  98. public virtual HashSet<ER_ProjectScore> ER_ProjectScore { get; set; }
  99. /// <summary>
  100. /// EX_ExaminationBatch
  101. /// </summary>
  102. public virtual HashSet<EX_ExaminationBatch> EX_ExaminationBatch { get; set; }
  103. }
  104. }