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 { public User() { Roles = new List(); Organizations = new List(); Positions = new List(); } 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 Roles { get; set; } public virtual List Organizations { get; set; } public virtual List Positions { get; set; } } }