//------------------------------------------------------------------------------
//
// 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.
//
//------------------------------------------------------------------------------
namespace EMIS.Entities
{
#pragma warning disable 1573
using System;
using System.Collections.Generic;
///
/// TP_PaymentFormula
///
public partial class TP_PaymentFormula
{
public TP_PaymentFormula()
{
this.TP_TeacherTypePaymentFormula = new HashSet();
}
///
/// PaymentFormulaID
///
public System.Guid PaymentFormulaID { get; set; }
///
/// Name
///
public string Name { get; set; }
///
/// StudentCountRateFormunla
///
public string StudentCountRateFormunla { get; set; }
///
/// PaymentFormula
///
public string PaymentFormula { get; set; }
///
/// IsDefault
///
public Nullable IsDefault { get; set; }
///
/// TP_TeacherTypePaymentFormula
///
public virtual HashSet TP_TeacherTypePaymentFormula { get; set; }
}
}