2025-06-20 18:53:29 +08:00
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PMSWPF.Data.Entities;
|
|
|
|
|
|
|
|
|
|
|
|
[SugarTable("User")]
|
|
|
|
|
|
public class DbUser
|
|
|
|
|
|
{
|
2025-06-23 17:01:06 +08:00
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)] //数据库是自增才配自增
|
2025-06-20 18:53:29 +08:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
}
|