13 lines
335 B
C#
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; }
|
|
} |