using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace New_College.Model.ViewModels { public class OtherUniversityDetailView { } public class SubjectEvaluateRequest { /// /// /// public string collegeCode { get; set; } /// /// 第四轮 /// public string extTypeId { get; set; } } public class SubjectEvaluateResponse { public SubjectEvaluateResult result { get; set; } public string code { get; set; } public string message { get; set; } public string fullMessage { get; set; } public DateTime timestamp { get; set; } public bool isSuccess { get; set; } } public class SubjectEvaluateResult { /// /// 是否有子项目 /// public int childCount { get; set; } public string extTypeId { get; set; } public string extTypeName { get; set; } public string[] extTypeNames { get; set; } public Subjectevaluate[] subjectEvaluates { get; set; } } public class Subjectevaluate { public string code { get; set; } /// /// 专业名称 /// public string name { get; set; } /// /// 专业编号 /// public object majorCode { get; set; } /// /// A|B|C|评级 等级 /// public string level { get; set; } public int sort { get; set; } /// /// 是否有内容介绍 /// public bool isHasIntroduce { get; set; } } /// /// 特色专业 /// public class FeaturedMajorRequest { public string collegeCode { get; set; } } public class FeaturedMajorResponse { public FeaturedMajorResult result { get; set; } public string code { get; set; } public string message { get; set; } public string fullMessage { get; set; } public DateTime timestamp { get; set; } public bool isSuccess { get; set; } } public class FeaturedMajorResult { /// /// 国家级 /// public Country[] countries { get; set; } /// /// 省级 /// public object[] provinces { get; set; } /// /// 省重点 /// public object[] provincePoints { get; set; } } public class Country { /// /// 学科专业名称 /// public string name { get; set; } public string code { get; set; } /// /// 国家级/省重点/省级 /// public string professionType { get; set; } /// /// 是否有专业介绍 /// public bool isHasIntroduce { get; set; } } public class DepartmentRequest { public string collegeCode { get; set; } } public class DepartmentResponse { public DepartmentResult[] result { get; set; } public string code { get; set; } public string message { get; set; } public string fullMessage { get; set; } public DateTime timestamp { get; set; } public bool isSuccess { get; set; } } public class DepartmentResult { /// /// 院系编号 /// public string collegeCode { get; set; } /// /// 院系名称 /// public string name { get; set; } /// /// 对应专业数量 /// public int majorCount { get; set; } public string website { get; set; } public Departmentmajor[] departmentMajors { get; set; } } public class Departmentmajor { public string id { get; set; } public string departmentId { get; set; } /// /// 专业名称 /// public string name { get; set; } /// /// 专业code /// public string code { get; set; } public string level { get; set; } /// /// 本/专 /// public string levelText { get; set; } /// /// 显示名称 /// public string majorDisplayName { get; set; } public object largeClassName { get; set; } public object middleClassName { get; set; } public object departmentName { get; set; } public object evaluateLevel { get; set; } public string[] featuredLabel { get; set; } /// /// 是否有专业介绍 /// public bool isHasIntroduce { get; set; } } }