using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { //年份 学校 批次 选科要求 门类 一级学科 专业 专业代码 招生人数 学制 学费 生源地 public class D_PlanMajorDescPro : EntityModel { /// /// 院校Id /// public int UId { get; set; } /// /// /// public int Years { get; set; } /// /// 院校名称 /// public string UniversityName { get; set; } /// /// 院校备注 /// public string UniversityRemark { get; set; } /// /// 院校所在省份 /// public string AreaName { get; set; } /// ///院校所在城市 /// public string CityName { get; set; } /// /// 排名 /// public string Rank { get; set; } public string _985 { get; set; } public string _211 { get; set; } /// /// /// public string _SYL { get; set; } /// /// 科类 /// public string SubjectType { get; set; } /// /// 专业组 /// public string MajorGroup { get; set; } /// ///批次 /// public string BatchName { get; set; } /// /// 选科要求 /// public string SelectSubject { get; set; } /// /// 门类 /// public string RootType { get; set; } /// /// 一级学科 /// public string FirstType { get; set; } /// /// 专业 /// [SugarColumn(IsNullable = true, Length = 1000)] public string Major { get; set; } /// /// 专业备注 /// public string Remark { get; set; } public string MajorCode { get; set; } public int PlanCount { get; set; } public int NewCount { get; set; } /// /// 最低分 /// public int LowScore { get; set; } /// /// 最低分排名 /// public int LowScoreRank { get; set; } /// /// 学制 /// public string AcademicYear { get; set; } /// /// 学费 /// public string Free { get; set; } /// /// 生源地 /// public string Location { get; set; } /// /// 办学性质:公办 民办 /// public string Nature { get; set; } /// /// 学校归属 /// public string Ownership { get; set; } /// /// 全国统一招生代码 /// public string EnrollmentCode { get; set; } /// /// 招生类型 /// public string EnrollmentType { get; set; } /// /// 学校类别 /// public string SchoolType { get; set; } /// /// 学历类别 /// public string EducationCategory { get; set; } /// /// 学校曾用名 /// public string FormerName { get; set; } } }