using System; using System.Collections.Generic; using System.Linq; using System.Text; using EMIS.ViewModel.Cache; namespace EMIS.ViewModel.FeeManage { public class StudentFeeDetailView { public System.Guid ExaminationRegistrationID { get; set; } public Nullable ExaminationTypeID { get; set; } public string ExaminationTypeName { get; set; } public Nullable ExaminationProjectID { get; set; } public string ExaminationProjectName { get; set; } public Nullable UserID { get; set; } /// /// 班级 /// public Nullable ClassmajorID { get; set; } public string ClassmajorName { get; set; } public string LoginID { get; set; } public string UserName { get; set; } public Nullable Sex { get; set; } public string SexName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Sex.ToString()) .Where(x => x.Value == Sex) .Select(x => x.Name).FirstOrDefault(); } } public string IDNumber { get; set; } public Nullable 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 Nullable Fee { get; set; } } }