using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { //年份 学校 批次 选科要求 门类 一级学科 专业 专业代码 招生人数 学制 学费 生源地 public class D_PlanMajorDesc : EntityModel { /// /// 院校Id /// public int UId { get; set; } public int Years { get; set; } /// /// 院校名称 /// public string UniversityName { 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 MajorCode { get; set; } public int PlanCount { 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; } } }