using System; using System.Collections.Generic; using System.Linq; using System.Text; using EMIS.ViewModel.EnrollManage.SpecialtyManage; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using EMIS.ViewModel.CacheManage; namespace EMIS.ViewModel.SelectCourse { public class ExecutableFreeSelectionCouseSpecialtyListView : SpecialtyView { public Guid ExecutableFreeSelectionCouseID { get; set; } /// /// 主键ID /// [DisplayName("主键ID")] public Guid? SpecialtyID { get; set; } /// /// 专业名称 /// [Required] [DisplayName("专业名称")] public int? StandardID { get; set; } public string InitStandardCode { get; set; } /// /// 专业名称 /// [DisplayName("专业名称")] public string StandardName { get; set; } /// /// 专业代码 /// [DisplayName("专业代码")] public string Code { get { return (this.InitStandardCode != null ? this.InitStandardCode.PadLeft(6, '0') : ""); } } /// /// 学制 /// [Required] [DisplayName("学制")] [DisplayFormat(DataFormatString = "{0:#.#}")] [RegularExpression(@"^[0-9]+([.]{1}[0-9]+){0,1}$", ErrorMessage = "请输入数字")] public decimal? LearnSystem { get; set; } /// /// 学制 /// public string LearnSystemStr { get; set; } /// /// 专业科类 /// [DisplayName("专业科类")] public int? ScienceclassID { get; set; } /// /// 专业科类 /// [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(); } } /// /// 学习形式 /// [Required] [DisplayName("学习形式")] public int? LearningformID { get; set; } /// /// 学习形式 /// [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] [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "EducationID")] public int? EducationID { get; set; } /// 培养层次名称 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(); } } /// /// 专业属性 /// [DisplayName("专业属性")] public int? PropertyID { get; set; } /// /// 专业属性 /// [DisplayName("专业属性")] public string PropertyStr { get; set; } /// /// 专业属性名称 /// [DisplayName("专业属性名称")] public string PropertyName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_Property.ToString()) .Where(x => x.Value == PropertyID) .Select(x => x.Name).FirstOrDefault(); } } /// /// 年级 /// [DisplayName("年级")] public int? SchoolyearID { get; set; } /// /// 专业称号 /// [DisplayName("专业称号")] public int? StandardTitle { get; set; } /// /// 专业称号 /// [DisplayName("专业称号")] public string StandardTitleStr { get; set; } /// /// 专业称号 /// [DisplayName("专业称号")] public string StandardTitleName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_StandardTitle.ToString()) .Where(x => x.Value == StandardTitle) .Select(x => x.Name).FirstOrDefault(); } } /// /// 称号级别 /// [DisplayName("称号级别")] public int? StandardLevel { get; set; } /// /// 称号级别 /// [DisplayName("称号级别")] public string StandardLevelStr { get; set; } /// /// 称号级别 /// [DisplayName("称号级别")] public string StandardLevelName { get { return IdNameExt.GetDictionaryItem(DictionaryItem.CF_StandardLevel.ToString()) .Where(x => x.Value == StandardLevel) .Select(x => x.Name).FirstOrDefault(); } } /// /// 备注 /// [DisplayName("备注")] public string Remarks { get; set; } /// /// 错误信息 /// [DisplayName("错误信息")] public string ErrorMessage { get; set; } /// /// 创建人 /// [DisplayName("创建人")] public Guid? CreateUserID { get; set; } /// /// 创建时间 /// [DisplayName("创建时间")] public DateTime? CreateTime { get; set; } private bool _isExcelVaildateOK = true; /// /// Excel验证是否通过,默认为true /// true:通过;false:不通过 /// public bool IsExcelVaildateOK { get { return _isExcelVaildateOK; } set { _isExcelVaildateOK = value; } } } }