namespace Admin.NET.Application.Entity; /// /// 自己业务数据表 /// [SugarTable("d_test", "自己业务数据表")] [SqlSugarEntity] // [SqlSugarEntity(DbConfigId = TestConst.ConfigId)] public class Test : EntityBase { /// /// 姓名 /// [SugarColumn(ColumnDescription = "姓名", Length = 20)] [Required, MaxLength(20)] public string Name { get; set; } /// /// 年龄 /// [SugarColumn(ColumnDescription = "年龄")] public int Age { get; set; } /// /// 出生日期 /// [SugarColumn(ColumnDescription = "出生日期")] public DateTime BirthDate { get; set; } }