12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// TP_PaymentFormula
- /// </summary>
- public partial class TP_PaymentFormula
- {
- public TP_PaymentFormula()
- {
- this.TP_TeacherTypePaymentFormula = new HashSet<TP_TeacherTypePaymentFormula>();
- }
-
- /// <summary>
- /// PaymentFormulaID
- /// </summary>
- public System.Guid PaymentFormulaID { get; set; }
- /// <summary>
- /// Name
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// StudentCountRateFormunla
- /// </summary>
- public string StudentCountRateFormunla { get; set; }
- /// <summary>
- /// PaymentFormula
- /// </summary>
- public string PaymentFormula { get; set; }
- /// <summary>
- /// IsDefault
- /// </summary>
- public Nullable<bool> IsDefault { get; set; }
-
- /// <summary>
- /// TP_TeacherTypePaymentFormula
- /// </summary>
- public virtual HashSet<TP_TeacherTypePaymentFormula> TP_TeacherTypePaymentFormula { get; set; }
- }
- }
|