PaymentFormlulaView.cs 804 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.PaymentManage
  6. {
  7. public class PaymentFormlulaView
  8. {
  9. /// <summary>
  10. /// PaymentFormulaID
  11. /// </summary>
  12. public System.Guid PaymentFormulaID { get; set; }
  13. /// <summary>
  14. /// Name
  15. /// </summary>
  16. public string Name { get; set; }
  17. /// <summary>
  18. /// StudentCountRateFormunla
  19. /// </summary>
  20. public string StudentCountRateFormunla { get; set; }
  21. /// <summary>
  22. /// PaymentFormula
  23. /// </summary>
  24. public string PaymentFormula { get; set; }
  25. /// <summary>
  26. /// IsDefault
  27. /// </summary>
  28. public Nullable<bool> IsDefault { get; set; }
  29. }
  30. }