using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { /// /// 各省份每年招生计划专业分数线 /// 年份 学校 批次 选科要求 门类 一级学科 专业 平均分 最高分 最低分 最低分排名 生源地 /// public class D_PlanMajorScoreLine : EntityModel { /// /// 院校Id /// public int UId { get; set; } /// /// 年份 /// public int Years { get; set; } /// /// 学校 /// public string UniversityName { get; set; } /// /// 批次 /// public string BatchName { get; set; } /// /// 选科要求 /// [SugarColumn(IsNullable = true, Length = 500)] public string SelectSubject { get; set; } /// /// 门类 /// public string RootType { get; set; } /// /// 一级学科 /// public string FirstType { get; set; } /// /// 专业 /// [SugarColumn(IsNullable = true, Length = 500)] public string Major { get; set; } [SugarColumn(IsNullable = true, Length = 1000)] public string Remark { get; set; } /// /// 平均分 /// public string AvgScore { get; set; } /// /// 最高分 /// public string HighScore { get; set; } /// /// 最低分 /// public int LowScore { get; set; } /// /// 招生计划人数 /// public int PlanCount { get; set; } /// /// 专业组 /// public string MajorGroup { get; set; } /// /// 最低分排名 /// public int LowScoreRank { get; set; } /// /// 生源地 /// public string Location { get; set; } } }