using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using Bowin.Common.Mvc; using EMIS.ViewModel.CacheManage; namespace EMIS.ViewModel.EvaluationManage.EvaluationSetting { public class EvaluationGradeControlView { /// /// 主键ID /// [DisplayName("主键ID")] public Guid EvaluationGradeControlID { get; set; } /// /// 学年学期ID /// [Required] [DisplayName("学年学期ID")] public Guid? SchoolyearID { get; set; } /// /// 学年学期对应的Value值 /// [DisplayName("SchoolyearValue")] public int? SchoolyearValue { get; set; } /// /// 学年学期 /// [DisplayName("学年学期")] public string SchoolyearCode { get; set; } /// /// 年级专业ID /// [Required] [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? GradeID { get; set; } /// /// 年级 /// [DisplayName("年级")] public string GradeName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Grade.ToString()).Where(x => x.Value == GradeID).Select(x => x.Name).FirstOrDefault(); } } /// /// 入学学期 /// [DisplayName("入学学期")] public int? SemesterID { get; set; } /// /// 入学学期 /// [DisplayName("入学学期")] public string SemesterName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Semester.ToString()).Where(x => x.Value == SemesterID).Select(x => x.Name).FirstOrDefault(); } } /// /// 专业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; } /// /// 入学学年学期ID /// [DisplayName("入学学年学期ID")] public Guid? StartSchoolyearID { get; set; } /// /// 入学学年学期对应的Value值 /// [DisplayName("StartSchoolyearValue")] public int? StartSchoolyearValue { get; set; } /// /// 入学学年学期 /// [DisplayName("入学学年学期")] public string StartSchoolyearCode { get; set; } /// /// 毕业学期 /// [DisplayName("毕业学期")] public Guid? GraduateSchoolyearID { get; set; } /// /// 毕业学期对应的Value值 /// [DisplayName("GraduateSchoolyearValue")] public int? GraduateSchoolyearValue { get; set; } /// /// 毕业学期 /// [DisplayName("毕业学期")] public string GraduateSchoolyearCode { get; set; } /// /// 班级数 /// [DisplayName("班级数")] public int? ClassmajorCount { get; set; } /// /// 学生数 /// [DisplayName("学生数")] public int? StudentCount { get; set; } /// /// 可评次数 /// [Required] [DisplayName("可评次数")] [RegularExpression(@"^\d+$", ErrorMessage = "请输入非负整数")] public int? Number { get; set; } /// /// 开始时间 /// [Required] [DisplayName("开始时间")] [DataType(DataType.DateTime)] public DateTime? StartTime { get; set; } /// /// 结束时间 /// [Required] [DisplayName("结束时间")] [DataType(DataType.DateTime)] [DateTimeNotLessThan("StartTime", "开始时间")] public DateTime? EndTime { get; set; } /// /// 状态 /// [DisplayName("状态")] public int? RecordStatus { get; set; } /// /// 创建人 /// [DisplayName("创建人")] public Guid? CreateUserID { get; set; } /// /// 创建人 /// [DisplayName("创建人")] public string CreateUserName { get; set; } /// /// 创建时间 /// [DisplayName("创建时间")] public DateTime? CreateTime { get; set; } /// /// 修改人 /// [DisplayName("修改人")] public Guid? ModifyUserID { get; set; } /// /// 修改人 /// [DisplayName("修改人")] public string ModifyUserName { get; set; } /// /// 修改时间 /// [DisplayName("修改时间")] public DateTime? ModifyTime { get; set; } } }