using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { public class T_RegionScore : EntityModel { /// /// 省份Id /// [SugarColumn(IsNullable = true)] public int AreaId { get; set; } /// /// 省份名称 /// public string AreaName { get; set; } /// /// 年份 /// [SugarColumn(IsNullable = true)] public int Year { get; set; } /// /// 满分 /// [SugarColumn(IsNullable = true)] public float Score { get; set; } } }