using System; using System.Linq; using System.Text; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using EMIS.ViewModel.CacheManage; namespace EMIS.ViewModel.ScoreManage { public class PersonalCreditView { /// /// 用户ID /// [DisplayName("用户ID")] public Guid? UserID { get; set; } /// /// 学号 /// [DisplayName("学号")] public string StudentNo { get; set; } /// /// 姓名 /// [DisplayName("姓名")] public string UserName { get; set; } /// /// 性别 /// [DisplayName("性别")] public int? SexID { get; set; } /// /// 性别 /// [DisplayName("性别")] public string SexName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Sex.ToString()) .Where(x => x.Value == SexID) .Select(x => x.Name).FirstOrDefault(); } } /// /// 在校状态 /// [DisplayName("在校状态")] public int? InSchoolStatusID { get; set; } /// /// 在校状态 /// [DisplayName("在校状态")] public string InSchoolStatusName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_InschoolStatus.ToString()) .Where(x => x.Value == InSchoolStatusID) .Select(x => x.Name).FirstOrDefault(); } } /// /// 学籍状态 /// [DisplayName("学籍状态")] public int? StudentStatusID { get; set; } /// /// 学籍状态 /// [DisplayName("学籍状态")] public string StudentStatusName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_StudentStatus.ToString()) .Where(x => x.Value == StudentStatusID).Select(x => x.Name).FirstOrDefault(); } } /// /// 班级信息ID /// [DisplayName("班级信息ID")] public Guid? ClassID { get; set; } /// /// 班级编号 /// [DisplayName("班级编号")] public string ClassNo { get; set; } /// /// 班级名称 /// [DisplayName("班级名称")] public string ClassName { get; set; } /// /// 年级专业ID /// [DisplayName("年级专业ID")] public Guid? GrademajorID { get; set; } /// /// 年级专业编号 /// [DisplayName("年级专业编号")] public string GrademajorCode { get; set; } /// /// 年级专业名称 /// [DisplayName("年级专业名称")] public string GrademajorName { get; set; } /// /// 院系专业ID /// [DisplayName("院系专业ID")] public Guid? FacultymajorID { get; set; } /// /// 院系专业编号 /// [DisplayName("院系专业编号")] public string FacultymajorNo { get; set; } /// /// 院系专业名称 /// [DisplayName("院系专业名称")] public string FacultymajorName { get; set; } /// /// 院系所ID /// [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeID")] public Guid? CollegeID { get; set; } /// /// 院系所代码 /// [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeCode")] public string CollegeNo { get; set; } /// /// 院系所名称 /// [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")] public string CollegeName { get; set; } /// /// 校区ID /// [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "Campus")] public Guid? CampusID { get; set; } /// /// 校区代码 /// [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CampusCode")] public string CampusNo { get; set; } /// /// 校区名称 /// [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CampusName")] public string CampusName { get; set; } /// /// 年级 /// [DisplayName("年级")] public int? SchoolyearID { get; set; } /// /// 专业ID(Value) /// [DisplayName("专业ID(Value)")] public int? StandardID { get; set; } /// /// 专业代码 /// [DisplayName("专业代码")] public string StandardCode { get { var inistStandardCode = IdNameExt.GetDictionaryItem(DictionaryItem.CF_Standard.ToString()) .Where(x => x.Value == StandardID) .Select(x => x.Code).FirstOrDefault(); return (inistStandardCode != null ? inistStandardCode.PadLeft(6, '0') : ""); } } /// /// 专业名称 /// [DisplayName("专业名称")] public string StandardName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Standard.ToString()) .Where(x => x.Value == StandardID) .Select(x => x.Name).FirstOrDefault(); } } /// /// 培养层次 /// [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationID")] public int? EducationID { get; set; } /// /// 培养层次 /// [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationName")] public string EducationName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Education.ToString()) .Where(x => x.Value == EducationID) .Select(x => x.Name).FirstOrDefault(); } } /// /// 学习形式 /// [DisplayName("学习形式")] public int? LearningformID { get; set; } /// /// 学习形式 /// [DisplayName("学习形式")] public string LearningformName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Learningform.ToString()) .Where(x => x.Value == LearningformID) .Select(x => x.Name).FirstOrDefault(); } } /// /// 学制 /// [DisplayName("学制")] public decimal? LearnSystem { get; set; } /// /// 毕业日期 /// [DisplayName("毕业日期")] [DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}")] public DateTime? PlanningGraduateDate { get; set; } /// /// 课程门数 /// [DisplayName("课程门数")] public int? CourseCount { get; set; } /// /// 平均成绩 /// [DisplayName("平均成绩")] public decimal? AverageScore { get; set; } /// /// 必修学分 /// [DisplayName("必修学分")] public decimal? RequiredCredit { get; set; } /// /// 限选学分 /// [DisplayName("限选学分")] public decimal? OptionalCourseCredit { get; set; } /// /// 任选学分 /// [DisplayName("任选学分")] public decimal? FreeSelectionCourseCredit { get; set; } /// /// 方向选修学分 /// [DisplayName("方向选修学分")] public decimal? ElectiveCredit { get; set; } /// /// 公共选修学分 /// [DisplayName("公共选修学分")] public decimal? ElectivePublicCredit { get; set; } /// /// 通识教育学分 /// [DisplayName("通识教育学分")] public decimal? GeneralEducationCredit { get; set; } /// /// 校本课程学分(不包含俱乐部) /// [DisplayName("校本课程学分(不包含俱乐部)")] public decimal? SchoolbasedNoClubCredit { get; set; } /// /// 校本课程学分(只包含俱乐部) /// [DisplayName("校本课程学分(只包含俱乐部)")] public decimal? SchoolbasedClubCredit { get; set; } /// /// 校本课程学分 /// [DisplayName("校本课程学分")] public decimal? SchoolbasedCredit { get { return (SchoolbasedNoClubCredit ?? 0) + ((SchoolbasedClubCredit ?? 0) > 4 ? 4 : (SchoolbasedClubCredit ?? 0)); } } /// /// 实践环节学分(不包含俱乐部) /// [DisplayName("实践环节学分(不包含俱乐部)")] public decimal? PractiseNoClubCredit { get; set; } /// /// 实践环节学分(只包含俱乐部) /// [DisplayName("实践环节学分(只包含俱乐部)")] public decimal? PractiseClubCredit { get; set; } /// /// 实践环节学分 /// [DisplayName("实践环节学分")] public decimal? PractiseCredit { get { return (PractiseNoClubCredit ?? 0) + ((PractiseClubCredit ?? 0) > 4 ? 4 : (PractiseClubCredit ?? 0)); } } /// /// 总学分 /// [DisplayName("总学分")] public decimal? TotalCredit { get { return (RequiredCredit ?? 0) + (OptionalCourseCredit ?? 0) + (FreeSelectionCourseCredit ?? 0) - (SchoolbasedNoClubCredit ?? 0) - (SchoolbasedClubCredit ?? 0) - (PractiseNoClubCredit ?? 0) - (PractiseClubCredit ?? 0) + (SchoolbasedCredit ?? 0) + (PractiseCredit ?? 0); } } } }