using System; namespace Business.System.User.Entity { public class UserEty { //用户ID public string Userid { get; set; } //用户账户 public string Useraccount { get; set; } //用户密码 public string Userpassword { get; set; } //用户姓名 public string Username { get; set; } //用户部门ID public string Depid { get; set; } //用户手机号码 public string Mobile { get; set; } //用户角色ID public string Userroleid { get; set; } //用户添加时间 public DateTime Addtime { get; set; } //用户添加人ID public string Adduserid { get; set; } //用户删除标记 public bool Delflag { get; set; } } }