using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
/*
* @author : shaocx
* @date : 2024/4/19下午3:13:43
* @desc : 测试学生表
*/
namespace Admin.NET.Core
{
///
/// 测试学生表
///
[Table("test_student5")]
[Comment("测试学生表")]
public class TestStudent5 : DEntityBase
{
///
/// 姓名
///
[Comment("姓名")]
[MaxLength(50)]
public string Name { get; set; }
///
/// 年龄
///
[Comment("年龄")]
public int? Age { get; set; }
}
}