Files

29 lines
1.1 KiB
C#
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
using System;
using System.Collections.Generic;
namespace DouyinApi.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; }
}
}