2025-06-20 18:53:29 +08:00
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PMSWPF.Data.Entities;
|
|
|
|
|
|
|
2025-07-03 13:17:25 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 表示数据库中的用户实体。
|
|
|
|
|
|
/// </summary>
|
2025-06-20 18:53:29 +08:00
|
|
|
|
[SugarTable("User")]
|
|
|
|
|
|
public class DbUser
|
|
|
|
|
|
{
|
2025-07-03 13:17:25 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 用户的唯一标识符。
|
|
|
|
|
|
/// </summary>
|
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; }
|
|
|
|
|
|
}
|