EC_ChargeProject.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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_ChargeProject
  16. /// </summary>
  17. public partial class EC_ChargeProject
  18. {
  19. public EC_ChargeProject()
  20. {
  21. this.EC_ChargeStandard = new HashSet<EC_ChargeStandard>();
  22. this.EC_StudentCharge = new HashSet<EC_StudentCharge>();
  23. }
  24. /// <summary>
  25. /// ChargeProjectID
  26. /// </summary>
  27. public System.Guid ChargeProjectID { get; set; }
  28. /// <summary>
  29. /// Name
  30. /// </summary>
  31. public string Name { get; set; }
  32. /// <summary>
  33. /// Remark
  34. /// </summary>
  35. public string Remark { get; set; }
  36. /// <summary>
  37. /// RecordStatus
  38. /// </summary>
  39. public Nullable<int> RecordStatus { get; set; }
  40. /// <summary>
  41. /// CreateUserID
  42. /// </summary>
  43. public Nullable<System.Guid> CreateUserID { get; set; }
  44. /// <summary>
  45. /// CreateTime
  46. /// </summary>
  47. public Nullable<System.DateTime> CreateTime { get; set; }
  48. /// <summary>
  49. /// ModifyUserID
  50. /// </summary>
  51. public Nullable<System.Guid> ModifyUserID { get; set; }
  52. /// <summary>
  53. /// ModifyTime
  54. /// </summary>
  55. public Nullable<System.DateTime> ModifyTime { get; set; }
  56. /// <summary>
  57. /// EC_ChargeStandard
  58. /// </summary>
  59. public virtual HashSet<EC_ChargeStandard> EC_ChargeStandard { get; set; }
  60. /// <summary>
  61. /// EC_StudentCharge
  62. /// </summary>
  63. public virtual HashSet<EC_StudentCharge> EC_StudentCharge { get; set; }
  64. }
  65. }