using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models { public class Period { public Period() { grades = new List(); subjects = new List(); semesters = new List(); analysis = new Analysis(); majors = new List(); } /// /// 高职教专业 /// public List majors { get; set; } public List grades { get; set; } public List subjects { get; set; } public List semesters { get; set; } public string name { get; set; } public string id { get; set; } public int gradeCount { get; set; } public int semesterCount { get; set; } public int subjectCount { get; set; } //保存校区编码 public string campusId { get; set; } public Analysis analysis { get; set; } /// /// 课程计划表 /// public List timetable { get; set; } = new List(); //"学前","小学","初中","高中","中职(中专,技校,职高)","高职(专科)","大学本科","特殊教育","教育局","电教部门" //{"pre" ,"学前"}, //{"primary","小学"}, //{"junior","初中"}, //{ "senior","高中" }, //{ "secondary","中职(中专,技校,职高)" }, //{ "college","高职(专科)"}, //{ "university","大学本科"}, //{ "special","特殊教育"}, //{ "edu-bureau","教育局"}, //{ "elecedu-dept","电教部门"}, public List type { get; set; }= new List(); } /// /// 高职教的专业 /// public class Major { /// /// id /// public string id { get; set; } /// /// 名称 /// public string name { get; set; } } public class Analysis { public List type { get; set; } = new List(); public int income { get; set; } public int eugenics { get; set; } public int touch { get; set; } } }