using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { public class T_EnrollmentBatch : EntityModel { /// /// 省份id /// [SugarColumn(IsNullable = true)] public int AreaId { get; set; } /// /// 省份名称 /// [SugarColumn(IsNullable = true)] public string AreaName { get; set; } /// /// 年份 /// [SugarColumn(IsNullable = true)] public int Year { get; set; } [SugarColumn(IsNullable = true)] public string Batch_name { get; set; } /// /// 本科1,专科0,其他-1 /// [SugarColumn(IsNullable = true)] public int Subjectlevel { get; set; } /// /// 文理 不分文理 /// [SugarColumn(IsNullable = true)] public string Type { get; set; } } }