Files
DMS/DMS.Infrastructure/Entities/DbUser.cs
2025-07-21 22:02:42 +08:00

13 lines
335 B
C#

using SqlSugar;
namespace DMS.Infrastructure.Entities;
public class DbUser
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
public string Username { get; set; }
public string PasswordHash { get; set; }
public string Role { get; set; }
public bool IsActive { get; set; }
}