ER_LevelSetting.cs 2.5 KB

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