using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels { /// /// 志愿表详情 /// public class VolunteerTableResult { public int UniversityId { get; set; } public string UniversityName { get; set; } /// /// 省市区名称 /// public string AreaName { get; set; } /// /// 年份 /// public int Year { get; set; } public List Infos { get; set; } } public class PlanInfo { public int MajorId { get; set; } public string PlanName { get; set; } public int PlanNum { get; set; } public string Year { get; set; } public string Money { get; set; } public string YearName { get; set; } public float Scoreline { get; set; } } /// /// 志愿列表 /// public class VolunteerTableListResult { public int Id { get; set; } /// /// 名称 /// public string Name { get; set; } public string CreateTime { get; set; } } public class SimuVolunteerTableResult { /// /// 排名 /// public int? Rank { 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; } public int UniversityId { get; set; } public string UniversityName { get; set; } public string Province { get; set; } /// /// 办学性质 /// public int Nature { get; set; } public List Infos { get; set; } } }