using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace New_College.Model.ViewModels { public class MajorPlanProViewQuery { public int UId { get; set; } public string Location { get; set; } public string BatchName { get; set; } public int Year { get; set; } } public class UniversityProViewQuery : BasePageRequest { public int Year { get; set; } public string Name { get; set; } /// /// 学科层次(1本科,0专科) /// public int? SubjectLevel { get; set; } /// /// 省市区名称 /// public List? AreaName { get; set; } /// /// 办学性质 /// public List? Nature { get; set; } /// /// 用户id /// public int CustomerId { get; set; } /// /// 学校类型 /// public List? Type { get; set; } /// /// 是否985 0、否,1、是 /// public int? Nhef { get; set; } /// /// 是否211 0、否,1、是 /// public int? Sff { get; set; } /// /// 是否双一流 0、否,1、是 /// public int? Syl { get; set; } /// /// 学生所在省份 /// public string Location { get; set; } } public class MajorPlanProView { public int UId { get; set; } public string UniversityName { get; set; } public string UniversityCode { get; set; } public string collegeCode { get; set; } public List itemViews { get; set; } } public class MajorPlanProItemView { /// /// 年份 /// public int OldYears { get; set; } /// /// 年份 /// public int Years { get; set; } /// /// 计划数 /// public int planCount { get; set; } /// /// 扩缩招生情况 /// public int NewCount { get; set; } /// /// 上一年招生人数 /// public int OldPlanCount { get; set; } /// /// 学费 /// public string fee { get; set; } /// /// 专业代码 /// public string MajorCode { get; set; } /// /// 专业组 /// public string MajorGroup { get; set; } /// /// 专业名称 /// public string Major { get; set; } /// /// 专业备注 /// public string MajorRemark { get; set; } /// /// 选科组合 /// public string SubjectClam { get; set; } /// /// 学制 /// public string AcademicYear { get; set; } /// /// 批次名称 /// public string BatchName { get; set; } } public class UniversityPlanProView { public int PlanCount { get; set; } /// /// 官网 /// public string Web { get; set; } /// /// 院校id /// public int UId { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 排名 /// public string Rank { get; set; } /// /// 是否985 /// public string _985 { get; set; } /// /// 是否211 /// public string _211 { get; set; } /// /// 是否双一流 /// public string _SYL { get; set; } /// /// 学校logo /// public string Logo { 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 int MajorCount { get; set; } /// /// 招生总人数 /// public int ALLCount { get; set; } /// /// 扩缩招生情况 /// public int NewCount { get; set; } } }