EC_StudentCharge.cs 3.0 KB

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