using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels { public class UniversityResult { /// /// 官网 /// public string Web { get; set; } /// /// 主键id /// public int Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 排名 /// public int? Rank { get; set; } /// /// 是否985 /// public bool? Nhef { get; set; } /// /// 是否211 /// public bool? Sff { get; set; } /// /// 是否双一流 /// public bool? Syl { get; set; } /// /// 强基 /// public bool? QJJH { get; set; } /// /// 学校logo /// public string Logo { get; set; } /// /// 学校简介 /// public string Description { get; set; } /// /// 省市区名称 /// public string AreaName { get; set; } /// /// 办学性质 /// public int Nature { get; set; } /// /// 隶属于 /// public string AscriptionName { get; set; } /// /// 学科层次 /// public int? SubjectLevel { get; set; } /// /// 学校类型 /// public int? UniversityType { get; set; } /// /// 创办时间 /// public string BuildDate { get; set; } /// /// 院士数 /// public int? AcademicianCount { get; set; } /// /// 博士数 /// public int DoctorateCount { get; set; } /// /// 硕士数 /// public int MasterCount { get; set; } /// /// 是否收藏 /// public bool? IsCollection { get; set; } = false; /// /// 是否对比 /// public bool IsContrast { get; set; } = false; /// /// 是否分数接近 /// public bool IsNearScore { get; set; } = false; /// /// 院校图片json /// public string Imglist { get; set; } public string naturedetail { get; set; } /// /// 长学校id /// public string LongSchoolId { get; set; } /// /// /// public int Years { get; set; } /// /// 最低录取分数 /// public float ScoreLine { get; set; } /// /// 位次 /// public float Scorepostion { get; set; } } /// /// /// public class UniversityDetailResponse { /// /// -1代表 id为空 -2代表院校为空 /// public int Status { get; set; } public UniversityResult universityResult { get; set; } public List relatedMajors { get; set; } /// /// 特色专业 /// public List relatespMajors { get; set; } /// /// 毕业生省份流向 /// public graduateModel graduateModels { get; set; } } /// /// 相关专业 /// public class RelatedMajorModel { public int mid { get; set; } public string majorName { get; set; } } /// /// 毕业生省份流向 /// public class graduateModel { public object provinces { get; set; } public object attrs { get; set; } } /// /// 院校招生计划 /// public class NewPlanDescList { public string Name { get; set; } public int PlanNum { get; set; } public string Money { get; set; } public string AcademicYear { get; set; } public string SelectSubject { get; set; } public string Scoreline { get; set; } } public class BatchYear { public List Batch { get; set; } public List Year { get; set; } public List Type { get; set; } } public class UniversityRankList { /// /// 院校名称 /// public string Name { get; set; } /// /// 排名 最新 /// public int Sort { get; set; } } /// /// 录取概率分析结果 /// public class UniversityProbabilityResult { /// /// 是否985 /// public bool? Nhef { get; set; } /// /// 是否211 /// public bool? Sff { get; set; } /// /// 是否双一流 /// public bool? Syl { get; set; } /// /// 学校logo /// public string Logo { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 省市区名称 /// public string AreaName { get; set; } /// /// 学科层次 /// public int? SubjectLevel { get; set; } /// /// 办学性质 /// public int Nature { get; set; } /// /// 隶属于 /// public string AscriptionName { get; set; } /// /// 排行 /// public int Rank { get; set; } /// /// 概率 /// public float Probability { get; set; } /// /// 预估分数 /// public double EstimateScore { get; set; } /// /// 历年最低分 /// public List YearBatchScores { get; set; } /// /// 建议 /// public string Proposal { get; set; } } /// /// 历年最低分 /// public class YearBatchScore { /// /// 年份 /// public int Year { get; set; } /// /// 批次名称 /// public string BatchName { get; set; } /// /// 最低分 /// public float Score { get; set; } } }