using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { public class T_EnrollmentPlanedesc : EntityModel { /// /// 招生计划id /// [SugarColumn(IsNullable = true)] public int PlanId { get; set; } /// /// 招生计划批次id /// [SugarColumn(IsNullable = true)] public int BatchtypeId { get; set; } /// /// 招生院校id /// [SugarColumn(IsNullable = true)] public int UniversityId { get; set; } ///// ///// 招生专业分组id ///// //public int MajorgroupId { get; set; } //[SugarColumn(IsNullable = true)]-------------------------------------- //public string Majorgroup { get; set; } /// /// 选科限制:新高考(物理,化学,生物),老高考(无);新高考省份:江苏 湖北 福建 辽宁 广东 重庆 河北 湖南 /// [SugarColumn(IsNullable = true)] public string Subjectclaim { get; set; } /// /// 计划招生数 /// [SugarColumn(IsNullable = true)] public int Plancount { get; set; } /// /// 专业学费 /// [SugarColumn(IsNullable = true)] public string Tuitionfee { get; set; } /// /// 语言限制-------------------------------------- /// [SugarColumn(IsNullable = true)] public string Languageclaim { get; set; } /// /// 标签匹配 /// [SugarColumn(IsNullable = true)] public string Tags { get; set; } /// /// 分数线 /// [SugarColumn(IsNullable = true)] public float Scoreline { get; set; } /// /// 备注 /// [SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)] public string Remark { get; set; } /// /// 专业学年制(4年,3年) /// [SugarColumn(IsNullable = true)] public string Studyyears { get; set; } /// /// 专业ID -------------------------------------- /// [SugarColumn(IsNullable = true)] public int MajorId { get; set; } /// /// 专业名称-》招生计划名称 /// [SugarColumn(IsNullable = true)] public string MajorName { get; set; } ///// ///// 学校最低分-------------------------------------- ///// //[SugarColumn(IsNullable = true)] //public float? schoollowscore { get; set; } ///// ///// 学校省控线-------------------------------------- ///// //[SugarColumn(IsNullable = true)] //public float? schoolprovinline { get; set; } /// /// 专业平均分 /// [SugarColumn(IsNullable = true)] public float? majoraverage { get; set; } ///// ///// 最高分-------------------------------------- ///// //[SugarColumn(IsNullable = true)] //public float? heightscore { get; set; } /// /// 位次 /// [SugarColumn(IsNullable = true)] public float? scorepostion { get; set; } } }