2025-06-16 17:24:23 +08:00

51 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Volo.Abp.Domain.Entities;
namespace Syc.Basic.Web.WMS.Entitys
{
public class User:Entity<int>
{
public User()
{
Roles = new List<Role>();
Organizations = new List<Organization>();
Positions = new List<Position>();
}
public string Account { get; set; }
public string Password { get; set; }
public string NickName { get; set; }
public string RealName { get; set; }
public string Email { get; set; }
public string Telephone { get; set; }
public bool IsEnable { get; set; }
public DateTime? LastUpdateTime { get; set; }
public DateTime? LastLoginTime { get; set; }
public int Creator_Id { get; set; }
public bool IsDeleted { get; set; }
public DateTime Createtime { get; set; }
public virtual List<Role> Roles { get; set; }
public virtual List<Organization> Organizations { get; set; }
public virtual List<Position> Positions { get; set; }
}
}