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