sqlsugar/Src/Asp.Net/SqliteTest/UserTestCases/Cases/Models/Room.cs

19 lines
424 B
C#

using SqlSugar;
using System.Security.Principal;
namespace Test.Model
{
[SugarTable("RoomA01")]
public class Room
{
[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; }
}
}