StudentFeeProjectStatisticView.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using EMIS.ViewModel.Cache;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace EMIS.ViewModel.FeeManage
  7. {
  8. public class StudentFeeProjectStatisticView
  9. {
  10. public Guid? ExaminationBatchID { get; set; }
  11. public string ExaminationBatchName { get; set; }
  12. public Guid? ExaminationTypeID { get; set; }
  13. public string ExaminationTypeName { get; set; }
  14. public Guid? ExaminationProjectID { get; set; }
  15. public string ExaminationProjectName { get; set; }
  16. public int? FeeTypeID { get; set; }
  17. public string FeeTypeName
  18. {
  19. get
  20. {
  21. return IdNameExt.GetDictionaryItem(DictionaryItem.EX_ExaminationProjectFeeType.ToString())
  22. .Where(x => x.Value == FeeTypeID)
  23. .Select(x => x.Name).FirstOrDefault();
  24. }
  25. }
  26. public int? TotalRegistCount { get; set; }
  27. public decimal? TotalRegistAmount { get; set; }
  28. public int? TotalPaidCount { get; set; }
  29. public decimal? TotalPaidAmount { get; set; }
  30. public int? TotalRefundCount { get; set; }
  31. public decimal? TotalRefundAmount { get; set; }
  32. public int? TotalRefundApplyCount { get; set; }
  33. public decimal? TotalRefundApplyAmount { get; set; }
  34. public int? TotalRefundingCount { get; set; }
  35. public decimal? TotalRefundingAmount { get; set; }
  36. }
  37. }