using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels { public class UniversityCollectionResult { public int Id { get; set; } /// /// 院校Id /// public int UniversityId { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 是否985 /// public bool? Nhef { get; set; } /// /// 是否211 /// public bool? Sff { get; set; } /// /// 是否双一流 /// public bool? Syl { get; set; } /// /// 学校logo /// public string Logo { get; set; } /// /// 是否加入对比 0就是没有 /// public bool IsContrast { get; set; } /// /// 是否收藏 /// public bool IsCollection { get; set; } /// /// 省市区名称 /// public string AreaName { get; set; } /// /// 学科层次 /// public int SubjectLevel { get; set; } } public class UniversitycontrastResult { public int Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 排名 /// public int? Rank { get; set; } /// /// 是否985 /// public string Nhef { get; set; } /// /// 是否211 /// public string Sff { get; set; } /// /// 是否双一流 /// public string Syl { get; set; } /// /// 省市区名称 /// public string AreaName { get; set; } /// /// 办学性质 /// public string Nature { get; set; } /// /// 隶属于 /// public string AscriptionName { get; set; } /// /// 学科层次 /// public string SubjectLevel { get; set; } /// /// 学校类型 /// public string UniversityType { get; set; } /// /// 创办时间 /// public string BuildDate { get; set; } /// /// 院士数 /// public string AcademicianCount { get; set; } /// /// 博士数 /// public string DoctorateCount { get; set; } /// /// 硕士数 /// public string MasterCount { get; set; } public string MajorNum { get; set; } } public class UniversityCollectionByMapResult { public double Lng { get; set; } public double Lat { get; set; } } }