You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
976 B
38 lines
976 B
using System.ComponentModel.DataAnnotations;
|
|
using WTA.Shared.Attributes;
|
|
using WTA.Shared.Domain;
|
|
|
|
namespace WTA.Application.Identity.Entities.SystemManagement;
|
|
|
|
[Order(1)]
|
|
[SystemManagement]
|
|
public class User : BaseEntity
|
|
{
|
|
public string UserName { get; set; } = null!;
|
|
|
|
[ScaffoldColumn(false)]
|
|
public string NormalizedUserName { get; set; } = null!;
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
[ScaffoldColumn(false)]
|
|
public string SecurityStamp { get; set; } = null!;
|
|
|
|
[ScaffoldColumn(false)]
|
|
public string PasswordHash { get; set; } = null!;
|
|
|
|
public int AccessFailedCount { get; set; }
|
|
public DateTime? LockoutEnd { get; set; }
|
|
|
|
[Navigation]
|
|
public Guid? DepartmentId { get; set; }
|
|
|
|
[Navigation]
|
|
public Guid? PostId { get; set; }
|
|
|
|
public Department? Department { get; set; }
|
|
public Post? Post { get; set; }
|
|
|
|
[UIHint("select")]
|
|
public List<UserRole> UserRoles { get; set; } = new List<UserRole>();
|
|
}
|
|
|