using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using EMIS.ViewModel.CacheManage; namespace EMIS.ViewModel.UniversityManage.SpecialtyClassManage { public class FacultymajorView { /// /// 院系专业ID /// [DisplayName("院系专业ID")] public Guid FacultymajorID { get; set; } /// /// 院系专业编号 /// [Required] [DisplayName("院系专业编号")] [RegularExpression(@"^[0-9a-zA-Z\s?]+$", ErrorMessage = "请输入数字或英文字母")] public string Code { get; set; } /// /// 院系专业名称 /// [Required] [DisplayName("院系专业名称")] public string Name { get; set; } /// /// 简称 /// [DisplayName("简称")] public string Abbreviation { get; set; } /// /// 英文名称 /// [DisplayName("英文名称")] public string EnglishName { get; set; } /// /// 院系专业名称+代码 /// [DisplayName("院系专业")] public string NameCode { 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; } /// /// 院系所ID /// [Required] [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")] public Guid? CollegeID { get; set; } /// /// 院系所代码 /// [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeCode")] public string CollegeCode { get; set; } /// /// 院系所名称 /// [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeName")] public string CollegeName { get; set; } /// /// 专业ID(Value) /// [Required] [DisplayName("专业ID(Value)")] public int? StandardID { get; set; } /// /// 专业代码(Excel导入) /// [DisplayName("专业代码")] public string StandardCodeStr { get; set; } /// /// 专业名称(Excel导入) /// [DisplayName("专业名称")] public string StandardNameStr { 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; set; } /// /// 培养层次 /// [Required] [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationID")] public int? EducationID { get; set; } /// /// 培养层次(Excel导入) /// [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationName")] public string EducationStr { 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(); } } /// /// 学习形式 /// [Required] [DisplayName("学习形式")] public int? LearningformID { get; set; } /// /// 学习形式(Excel导入) /// [DisplayName("学习形式")] public string LearningformStr { get; set; } /// /// 学习形式 /// [DisplayName("学习形式")] public string LearningformName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Learningform.ToString()).Where(x => x.Value == LearningformID).Select(x => x.Name).FirstOrDefault(); } } /// /// 学制 /// [Required] [DisplayName("学制")] [RegularExpression(@"^[0-9]+([.]{1}[0-9]+){0,1}$", ErrorMessage = "请输入数字")] public decimal? LearnSystem { get; set; } /// /// 学制(Excel导入) /// [DisplayName("学制")] public string LearnSystemStr { get; set; } /// /// 专业科类 /// [DisplayName("专业科类")] public int? ScienceclassID { get; set; } /// /// 专业科类(Excel导入) /// [DisplayName("专业科类")] public string ScienceclassStr { get; set; } /// /// 专业科类 /// [DisplayName("专业科类")] public string ScienceclassName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Scienceclass.ToString()).Where(x => x.Value == ScienceclassID).Select(x => x.Name).FirstOrDefault(); } } /// /// 学习方式 /// [DisplayName("学习方式")] public int? LearningstyleID { get; set; } /// /// 学习方式(Excel导入) /// [DisplayName("学习方式")] public string LearningstyleStr { get; set; } /// /// 学习方式 /// [DisplayName("学习方式")] public string LearningstyleName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Learningstyle.ToString()).Where(x => x.Value == LearningstyleID).Select(x => x.Name).FirstOrDefault(); } } /// /// 授予学位 /// [DisplayName("授予学位")] public int? LearnPositionID { get; set; } /// /// 授予学位(Excel导入) /// [DisplayName("授予学位")] public string LearnPositionStr { get; set; } /// /// 授予学位 /// [DisplayName("授予学位")] public string LearnPositionName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_LearnPosition.ToString()).Where(x => x.Value == LearnPositionID).Select(x => x.Name).FirstOrDefault(); } } /// /// 师范标识 /// [DisplayName("师范标识")] public string TeacherIdentification { get; set; } /// /// 设置时间 /// [DisplayName("设置时间")] public DateTime? SetTime { get; set; } /// /// 设置时间(Excel导入) /// [DisplayName("设置时间")] public string SetTimeStr { get; set; } /// /// 年级专业数 /// [DisplayName("年级专业数")] public int? GrademajorCount { get; set; } /// /// 学生人数 /// [DisplayName("学生人数")] public int? StudentCount { get; set; } /// /// 备注 /// [DisplayName("备注")] public string Remark { get; set; } /// /// 错误信息(Excel导入) /// [DisplayName("未导入原因")] public string ErrorMessage { get; set; } /// /// 状态 /// [DisplayName("状态")] public int? RecordStatus { get; set; } /// /// 创建人 /// [DisplayName("创建人")] public Guid? CreateUserID { get; set; } /// /// 创建时间 /// [DisplayName("创建时间")] public DateTime? CreateTime { get; set; } /// /// 修改人 /// [DisplayName("修改人")] public Guid? ModifyUserID { get; set; } /// /// 修改时间 /// [DisplayName("修改时间")] public DateTime? ModifyTime { get; set; } } }