ER_DegreeApply.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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_DegreeApply
  16. /// </summary>
  17. public partial class ER_DegreeApply
  18. {
  19. /// <summary>
  20. /// DegreeApplyID
  21. /// </summary>
  22. public System.Guid DegreeApplyID { get; set; }
  23. /// <summary>
  24. /// GraduationApplyID
  25. /// </summary>
  26. public Nullable<System.Guid> GraduationApplyID { get; set; }
  27. /// <summary>
  28. /// ApplySchoolyearID
  29. /// </summary>
  30. public Nullable<System.Guid> ApplySchoolyearID { get; set; }
  31. /// <summary>
  32. /// DegreeConditionPackageID
  33. /// </summary>
  34. public Nullable<System.Guid> DegreeConditionPackageID { get; set; }
  35. /// <summary>
  36. /// DegreeBatchID
  37. /// </summary>
  38. public Nullable<int> DegreeBatchID { get; set; }
  39. /// <summary>
  40. /// DegreeNo
  41. /// </summary>
  42. public string DegreeNo { get; set; }
  43. /// <summary>
  44. /// GrantDate
  45. /// </summary>
  46. public Nullable<System.DateTime> GrantDate { get; set; }
  47. /// <summary>
  48. /// ApprovalStatus
  49. /// </summary>
  50. public Nullable<int> ApprovalStatus { get; set; }
  51. /// <summary>
  52. /// DegreeResult
  53. /// </summary>
  54. public Nullable<int> DegreeResult { get; set; }
  55. /// <summary>
  56. /// ApprovalResult
  57. /// </summary>
  58. public string ApprovalResult { get; set; }
  59. /// <summary>
  60. /// RecordStatus
  61. /// </summary>
  62. public Nullable<int> RecordStatus { get; set; }
  63. /// <summary>
  64. /// Remark
  65. /// </summary>
  66. public string Remark { get; set; }
  67. /// <summary>
  68. /// CreateTime
  69. /// </summary>
  70. public Nullable<System.DateTime> CreateTime { get; set; }
  71. /// <summary>
  72. /// CreateUserID
  73. /// </summary>
  74. public Nullable<System.Guid> CreateUserID { get; set; }
  75. /// <summary>
  76. /// ModifyTime
  77. /// </summary>
  78. public Nullable<System.DateTime> ModifyTime { get; set; }
  79. /// <summary>
  80. /// ModifyUserID
  81. /// </summary>
  82. public Nullable<System.Guid> ModifyUserID { get; set; }
  83. /// <summary>
  84. /// CF_Schoolyear
  85. /// </summary>
  86. public virtual CF_Schoolyear CF_Schoolyear { get; set; }
  87. /// <summary>
  88. /// ER_DegreeConditionPackage
  89. /// </summary>
  90. public virtual ER_DegreeConditionPackage ER_DegreeConditionPackage { get; set; }
  91. /// <summary>
  92. /// ER_GraduationApply
  93. /// </summary>
  94. public virtual ER_GraduationApply ER_GraduationApply { get; set; }
  95. }
  96. }