using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { public class T_EnrollmentPlane : EntityModel { /// /// 计划名称 /// [SugarColumn(IsNullable = true)] public string EnrollmentName { get; set; } /// /// 省份Id /// [SugarColumn(IsNullable = true)] public int Area_Id { get; set; } /// /// 年份 /// [SugarColumn(IsNullable = true)] public int Years { get; set; } } }