using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels { /// /// 志愿填报推荐一级懒人专用 /// public class UniversityEnrollmentPlanLazyResult { /// /// 排名 /// public string Rank { get; set; } public int UniversityId { get; set; } public string UniversityName { get; set; } public string Logo { get; set; } public int? Nhef { get; set; } public string _985 { get; set; } public string _211 { get; set; } /// /// /// public string _SYL { get; set; } /// /// 是否211 /// public int? Sff { get; set; } /// /// 是否双一流 /// public int? Syl { get; set; } public List Infos { get; set; } public string AreaName { get; set; } public string Year { get; set; } /// /// 行政名称 /// public string AscriptionName { get; set; } } public class UniversityMapMajorItems { public int UId { get; set; } public List MIds { get; set; } } /// /// 志愿填报推荐一级 /// public class UniversityEnrollmentPlanResult { /// /// 冲稳保 类型 /// public string Type { get; set; } /// /// 排名 /// public string Rank { get; set; } public int UniversityId { get; set; } public string UniversityName { get; set; } public string Logo { get; set; } public string AreaName { get; set; } public int? Nhef { get; set; } /// /// 是否211 /// public int? Sff { get; set; } /// /// 是否双一流 /// public int? Syl { get; set; } public string _985 { get; set; } public string _211 { get; set; } /// /// /// public string _SYL { get; set; } ///// ///// 院校最低分 ///// // public double? Score { get; set; } ///// ///// 位次 ///// //public string RankLine { get; set; } public float Scoreline { get; set; } public int planCount { get; set; } public int PlanId { get; set; } /// /// 对应的Ids /// public List PlanIds { get; set; } /// /// 对应专业数 /// public int MjaorPlan { get; set; } ///// /////01冲-02稳-03保 ///// //public int DatasType { get; set; } ///// ///// 批次Id ///// //public string BatchtypeId { get; set; } public string Web { get; set; } public string AscriptionName { get; set; } } /// /// 点开学校 展示专业 /// public class PlanDescList { public string Name { get; set; } public int PlanNum { get; set; } public string Year { get; set; } public string Money { get; set; } public int MajorId { get; set; } public float Scoreline { get; set; } } /// /// 冲稳保返回 /// public class CWBEnrollmentPlanResult { public string Name { get; set; } public int Count { get; set; } public List UniversityIds { get; set; } //public PageModel result { get; set; } } /// /// 霍兰德获取推荐专业 /// public class TagEnrollmentPlanResult { /// /// Id /// public int Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 颜色 /// public string Color { get; set; } /// /// 对应信息 /// public List Info { get; set; } } /// /// 专用 /// public class OtherInfo { /// /// Id /// public int Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 颜色 /// public string Color { get; set; } } public class majorlists { public string MajorName { get; set; } public string TagColor { get; set; } } /// /// 学校信息 /// public class SchoolInfo { /// /// 院校Id /// public int UniversityId { get; set; } /// /// 院校名称 /// public string UniversityName { get; set; } public string AscriptionName { get; set; } public string Logo { get; set; } public int? Nhef { get; set; } /// /// 是否211 /// public int? Sff { get; set; } /// /// 是否双一流 /// public int? Syl { get; set; } } public class LikeSchoolMajor { public string SchoolName { get; set; } public string MajorName { get; set; } } }