12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.PaymentManage
- {
- public class PaymentFormlulaView
- {
- /// <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; }
- }
- }
|