using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { //年份 学校 软科排名 科类 批次 最低分 最低分排名 省控线 全国统一招生代码 招生类型 学历类别 学校曾用名 生源地 /// ///各个省份投档资格线 /// public class D_QualificationLine : EntityModel { /// /// 院校Id /// public int UId { get; set; } /// /// 年份 /// public int Years { get; set; } /// /// 学校 /// public string UniversityName { get; set; } /// /// 软科排名 /// public int Rank { get; set; } /// /// 科类 /// public string SubjectType { get; set; } /// /// 批次 /// public string BatchName { get; set; } /// /// 最低分 /// public int LowScore { get; set; } /// /// 最低分排名 /// public int LowScoreRank { get; set; } /// /// 省控线 /// public int ProvinceScore { get; set; } /// /// 招生代码 /// public int RecruitCode { get; set; } /// /// 招生类型 /// public string RecruitType { get; set; } /// /// 学历类别 /// public string EducationType { get; set; } /// /// 高校曾用名 /// public string FormerName { get; set; } /// /// 生源地 /// public string Location { get; set; } /// /// 专业组 /// public string MajorGroup { get; set; } } }