ER_ProjectScore.cs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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_ProjectScore
  16. /// </summary>
  17. public partial class ER_ProjectScore
  18. {
  19. /// <summary>
  20. /// ProjectScoreID
  21. /// </summary>
  22. public System.Guid ProjectScoreID { get; set; }
  23. /// <summary>
  24. /// ExaminationProjectID
  25. /// </summary>
  26. public Nullable<System.Guid> ExaminationProjectID { get; set; }
  27. /// <summary>
  28. /// UserID
  29. /// </summary>
  30. public Nullable<System.Guid> UserID { get; set; }
  31. /// <summary>
  32. /// LevelSettingID
  33. /// </summary>
  34. public Nullable<System.Guid> LevelSettingID { get; set; }
  35. /// <summary>
  36. /// SchoolyearID
  37. /// </summary>
  38. public Nullable<System.Guid> SchoolyearID { get; set; }
  39. /// <summary>
  40. /// RecordStatus
  41. /// </summary>
  42. public Nullable<int> RecordStatus { get; set; }
  43. /// <summary>
  44. /// CreateTime
  45. /// </summary>
  46. public Nullable<System.DateTime> CreateTime { get; set; }
  47. /// <summary>
  48. /// CreateUserID
  49. /// </summary>
  50. public Nullable<System.Guid> CreateUserID { get; set; }
  51. /// <summary>
  52. /// ModifyUserID
  53. /// </summary>
  54. public Nullable<System.Guid> ModifyUserID { get; set; }
  55. /// <summary>
  56. /// ModifyTime
  57. /// </summary>
  58. public Nullable<System.DateTime> ModifyTime { get; set; }
  59. /// <summary>
  60. /// CF_Schoolyear
  61. /// </summary>
  62. public virtual CF_Schoolyear CF_Schoolyear { get; set; }
  63. /// <summary>
  64. /// CF_Student
  65. /// </summary>
  66. public virtual CF_Student CF_Student { get; set; }
  67. /// <summary>
  68. /// ER_LevelSetting
  69. /// </summary>
  70. public virtual ER_LevelSetting ER_LevelSetting { get; set; }
  71. /// <summary>
  72. /// EX_ExaminationProject
  73. /// </summary>
  74. public virtual EX_ExaminationProject EX_ExaminationProject { get; set; }
  75. }
  76. }