ER_ExaminationScore.cs 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. /// ER_ExaminationScore
  16. /// </summary>
  17. public partial class ER_ExaminationScore
  18. {
  19. public ER_ExaminationScore()
  20. {
  21. this.ER_Resit = new HashSet<ER_Resit>();
  22. }
  23. /// <summary>
  24. /// ExaminationScoreID
  25. /// </summary>
  26. public System.Guid ExaminationScoreID { get; set; }
  27. /// <summary>
  28. /// ExaminationBatchProjectID
  29. /// </summary>
  30. public Nullable<System.Guid> ExaminationBatchProjectID { get; set; }
  31. /// <summary>
  32. /// UserID
  33. /// </summary>
  34. public Nullable<System.Guid> UserID { get; set; }
  35. /// <summary>
  36. /// ExaminationSubjectID
  37. /// </summary>
  38. public Nullable<int> ExaminationSubjectID { get; set; }
  39. /// <summary>
  40. /// IsResit
  41. /// </summary>
  42. public Nullable<bool> IsResit { get; set; }
  43. /// <summary>
  44. /// Score
  45. /// </summary>
  46. public Nullable<decimal> Score { get; set; }
  47. /// <summary>
  48. /// Expire
  49. /// </summary>
  50. public Nullable<System.DateTime> Expire { get; set; }
  51. /// <summary>
  52. /// Remark
  53. /// </summary>
  54. public string Remark { get; set; }
  55. /// <summary>
  56. /// RecordStatus
  57. /// </summary>
  58. public Nullable<int> RecordStatus { get; set; }
  59. /// <summary>
  60. /// CreateTime
  61. /// </summary>
  62. public Nullable<System.DateTime> CreateTime { get; set; }
  63. /// <summary>
  64. /// CreateUserID
  65. /// </summary>
  66. public Nullable<System.Guid> CreateUserID { get; set; }
  67. /// <summary>
  68. /// ModifyUserID
  69. /// </summary>
  70. public Nullable<System.Guid> ModifyUserID { get; set; }
  71. /// <summary>
  72. /// ModifyTime
  73. /// </summary>
  74. public Nullable<System.DateTime> ModifyTime { get; set; }
  75. /// <summary>
  76. /// CF_Student
  77. /// </summary>
  78. public virtual CF_Student CF_Student { get; set; }
  79. /// <summary>
  80. /// EX_ExaminationBatchProject
  81. /// </summary>
  82. public virtual EX_ExaminationBatchProject EX_ExaminationBatchProject { get; set; }
  83. /// <summary>
  84. /// ER_Resit
  85. /// </summary>
  86. public virtual HashSet<ER_Resit> ER_Resit { get; set; }
  87. }
  88. }