TP_PaymentFormula.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. /// TP_PaymentFormula
  16. /// </summary>
  17. public partial class TP_PaymentFormula
  18. {
  19. public TP_PaymentFormula()
  20. {
  21. this.TP_TeacherTypePaymentFormula = new HashSet<TP_TeacherTypePaymentFormula>();
  22. }
  23. /// <summary>
  24. /// PaymentFormulaID
  25. /// </summary>
  26. public System.Guid PaymentFormulaID { get; set; }
  27. /// <summary>
  28. /// Name
  29. /// </summary>
  30. public string Name { get; set; }
  31. /// <summary>
  32. /// StudentCountRateFormunla
  33. /// </summary>
  34. public string StudentCountRateFormunla { get; set; }
  35. /// <summary>
  36. /// PaymentFormula
  37. /// </summary>
  38. public string PaymentFormula { get; set; }
  39. /// <summary>
  40. /// IsDefault
  41. /// </summary>
  42. public Nullable<bool> IsDefault { get; set; }
  43. /// <summary>
  44. /// TP_TeacherTypePaymentFormula
  45. /// </summary>
  46. public virtual HashSet<TP_TeacherTypePaymentFormula> TP_TeacherTypePaymentFormula { get; set; }
  47. }
  48. }