123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.Entities;
- using EMIS.ViewModel.CacheManage;
- namespace EMIS.ViewModel.EducationManage
- {
- public class EducationMissionClassStudentView
- {
- public Guid? SchoolyearID { get; set; }
- public Guid? CoursematerialID { get; set; }
- public int? HandleModeID { get; set; }
- public int? CourseSelectTypeID { get; set; }
- public Guid? UserID { get; set; }
- public string LoginID { get; set; }
- public string Name { get; set; }
- public string ClassName { get; set; }
- public int? StudentStatus { get; set; }
- public string StudentStatusName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_StudentStatus.ToString())
- .Where(x => x.Value == StudentStatus).Select(x => x.Name).FirstOrDefault();
- }
- }
- }
- }
|