#region
using SqlSugar;
#endregion
namespace Web.Core.Model.Entity;
///
/// 学生表
///
public class Student
{
///
/// id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 姓名
///
public string? Name { get; set; }
///
/// 年龄
///
public int? Age { get; set; }
///
/// 年龄2
///
public int? Age2 { get; set; }
}