StudentFeeStatisticTotalView.cs 734 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.FeeManage
  6. {
  7. public class StudentFeeStatisticTotalView
  8. {
  9. public int? TotalRegistCount { get; set; }
  10. public decimal? TotalRegistAmount { get; set; }
  11. public int? TotalPaidCount { get; set; }
  12. public decimal? TotalPaidAmount { get; set; }
  13. public int? TotalRefundCount { get; set; }
  14. public decimal? TotalRefundAmount { get; set; }
  15. public int? TotalRefundApplyCount { get; set; }
  16. public decimal? TotalRefundApplyAmount { get; set; }
  17. public int? TotalRefundingCount { get; set; }
  18. public decimal? TotalRefundingAmount { get; set; }
  19. }
  20. }