using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core { /// /// 选科基础数据 /// [SugarTable("bus_subject_basedata", "选科基础数据")] public class BusSubjectBaseData : DEntitySortBase { /// /// 适用省份Id /// [SugarColumn(ColumnDescription = "适用省份Id")] public int ApplyType { get; set; } /// /// 年份 /// [SugarColumn(ColumnDescription = "年份")] [MaxLength(100)] public string Years { get; set; } /// /// 高校省份 /// [SugarColumn(ColumnDescription = "高校省份")] [MaxLength(100)] public string LocalProvince { get; set; } [SugarColumn(ColumnDescription = "学历类别")] public int Type { get; set; } /// /// 院校名称 /// [SugarColumn(ColumnDescription = "院校名称")] [MaxLength(200)] public string UniversityName { get; set; } /// /// 专业名称 /// [SugarColumn(ColumnDescription = "专业名称")] [MaxLength(150)] public string MajorName { get; set; } /// /// 选科要求 /// [SugarColumn(ColumnDescription = "选科要求")] [MaxLength(200)] public string Requirements { get; set; } } }