123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- 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<Guid> ExaminationTypeID { get; set; }
- public string ExaminationTypeName { get; set; }
- public Nullable<Guid> ExaminationProjectID { get; set; }
- public string ExaminationProjectName { get; set; }
- public Nullable<Guid> UserID { get; set; }
- /// <summary>
- /// 班级
- /// </summary>
- public Nullable<System.Guid> ClassmajorID { get; set; }
- public string ClassmajorName { get; set; }
- public string LoginID { get; set; }
- public string UserName { get; set; }
- public Nullable<int> 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<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();
- }
- }
- /// <summary>
- /// 金额
- /// </summary>
- public Nullable<decimal> Fee { get; set; }
- }
- }
|