StudentFeeClassStatisticView.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 StudentFeeClassStatisticView
  9. {
  10. public int? Year { get; set; }
  11. public Guid? CollegeID { get; set; }
  12. public string CollegeName { get; set; }
  13. public Guid? ClassmajorID { get; set; }
  14. public string ClassmajorName { get; set; }
  15. public Guid? ExaminationTypeID { get; set; }
  16. public string ExaminationTypeName { get; set; }
  17. public Guid? ExaminationProjectID { get; set; }
  18. public string ExaminationProjectName { get; set; }
  19. public int? FeeTypeID { get; set; }
  20. public string FeeTypeName
  21. {
  22. get
  23. {
  24. return IdNameExt.GetDictionaryItem(DictionaryItem.EX_ExaminationProjectFeeType.ToString())
  25. .Where(x => x.Value == FeeTypeID)
  26. .Select(x => x.Name).FirstOrDefault();
  27. }
  28. }
  29. public int? TotalRegistCount { get; set; }
  30. public decimal? TotalRegistAmount { get; set; }
  31. public int? TotalPaidCount { get; set; }
  32. public decimal? TotalPaidAmount { get; set; }
  33. public int? TotalRefundCount { get; set; }
  34. public decimal? TotalRefundAmount { get; set; }
  35. public int? TotalRefundApplyCount { get; set; }
  36. public decimal? TotalRefundApplyAmount { get; set; }
  37. public int? TotalRefundingCount { get; set; }
  38. public decimal? TotalRefundingAmount { get; set; }
  39. }
  40. }