1234567891011121314151617181920212223242526272829303132333435363738 |
- using EMIS.ViewModel.Cache;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.FeeManage
- {
- public class StudentFeeProjectStatisticView
- {
- public Guid? ExaminationBatchID { get; set; }
- public string ExaminationBatchName { get; set; }
- public Guid? ExaminationTypeID { get; set; }
- public string ExaminationTypeName { get; set; }
- public Guid? ExaminationProjectID { get; set; }
- public string ExaminationProjectName { get; set; }
- public int? FeeTypeID { get; set; }
- public string FeeTypeName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.EX_ExaminationProjectFeeType.ToString())
- .Where(x => x.Value == FeeTypeID)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- public int? TotalRegistCount { get; set; }
- public decimal? TotalRegistAmount { get; set; }
- public int? TotalPaidCount { get; set; }
- public decimal? TotalPaidAmount { get; set; }
- public int? TotalRefundCount { get; set; }
- public decimal? TotalRefundAmount { get; set; }
- public int? TotalRefundApplyCount { get; set; }
- public decimal? TotalRefundApplyAmount { get; set; }
- public int? TotalRefundingCount { get; set; }
- public decimal? TotalRefundingAmount { get; set; }
- }
- }
|