using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels { public class UniversityQuery : BasePageRequest { public string Name { get; set; } /// /// 学科层次 /// public int? SubjectLevel { get; set; } /// /// 省市区名称 /// public List? AreaName { get; set; } /// /// 办学性质 /// public List? Nature { get; set; } /// /// 隶属于 1、教育部,2、省政府, 3 其他部委,4 军校 /// public List? Ascription { 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 class UniversityRankQuery: BasePageRequest { /// /// 院校类型 (0,校友会 1,武书连 2,软科 3,QS 4,U.S.News) /// public int? Type { get; set; } /// /// 院校名称 /// public string Name { get; set; } public string Year { get; set; } /// /// 院校类别 /// public int? SubjectType { get; set;} } public class UniversityIdQuery : BasePageRequest { public int Id { get; set; } } public class StringIdQuery { public string Id { get; set; } } public class UniversityGeneralRequest { public string collegeCode { get; set; } } }