using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMISOnline.ViewModel.Educational { public class TeachingPlanView { public Guid EducationMissionClassID { get; set; } /// /// 专业名称 /// public string StandardName { get; set; } /// /// 年级专业名称 /// public string GrademajorName { get; set; } /// /// 课程名称 /// public string CourseName { get; set; } /// /// 课程类别 /// public int? CourseTypeID { get; set; } /// 课程类别 /// public string CourseTypeName { get; set; } /// /// 开课学期ID /// public Guid? SchoolyearID { get; set; } /// /// 开课学期 /// public string SchoolyearCode { get; set; } /// /// 开课学期 /// public int? SchoolyearValue { get; set; } /// /// 院系所ID /// public Guid? CollegeID { get; set; } /// /// 院系所名称 /// public string CollegeName { get; set; } public DateTime? CreateTime { get; set; } } }