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.
24 lines
970 B
24 lines
970 B
namespace Tiobon.Core.Model.ViewModels;
|
|
|
|
public class SysUserInfoDto : SysUserInfoDtoRoot<long>
|
|
{
|
|
public string uLoginName { get; set; }
|
|
public string uLoginPWD { get; set; }
|
|
public string uRealName { get; set; }
|
|
public int uStatus { get; set; }
|
|
public long DepartmentId { get; set; }
|
|
public string uRemark { get; set; }
|
|
public System.DateTime uCreateTime { get; set; } = DateTime.Now;
|
|
public System.DateTime uUpdateTime { get; set; } = DateTime.Now;
|
|
public DateTime uLastErrTime { get; set; } = DateTime.Now;
|
|
public int uErrorCount { get; set; }
|
|
public string name { get; set; }
|
|
public int sex { get; set; } = 0;
|
|
public int age { get; set; }
|
|
public DateTime birth { get; set; } = DateTime.Now;
|
|
public string addr { get; set; }
|
|
public bool tdIsDelete { get; set; }
|
|
public List<string> RoleNames { get; set; }
|
|
public List<long> Dids { get; set; }
|
|
public string DepartmentName { get; set; }
|
|
}
|
|
|