You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
436 B
18 lines
436 B
using SqlSugar;
|
|
using System.Security.Principal;
|
|
|
|
namespace Test.Model
|
|
{
|
|
[SugarTable("PlaygroundA01")]
|
|
public class Playground
|
|
{
|
|
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int? Id { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "Name")]
|
|
public string Name { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "PId")]
|
|
public int? PId { get; set; }
|
|
}
|
|
}
|
|
|