using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { public class T_GearInfo : EntityModel { /// /// 招生计划Id /// public int PlanId { get; set; } /// /// 省份Id /// public int AreaId { get; set; } /// /// 类型 不分文理(0),理工类(1),文史类(2),default(1) /// public int GearType { get; set; } /// /// 档位名称 /// public string GearName { get; set; } /// /// 最高分 /// public decimal GearMaxScore { get; set; } /// /// 最低分 /// public decimal GearMinScore { get; set; } } }