using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMISOnline.ViewModel.Educational { public class FacultymajorView { public Guid FacultymajorID { get; set; } public string Code { get; set; } public string FacultymajorName { get; set; } /// /// 专业 /// public int? StandardID { get; set; } public string StandardName { get; set; } /// /// 学制 /// public decimal? LearnSystem { get; set; } /// /// 学历(培养层次) /// public int? EducationID { get; set; } public string EducationName { get; set; } /// /// 学习方式 /// public int? LearningformID { get; set; } public string LearningformName { get; set; } public Guid? CollegeID { get; set; } public string CollegeCode { get; set; } public string CollegeName { get; set; } public DateTime? CreateTime { get; set; } } }