init
This commit is contained in:
28
DouyinApi.Model/ViewModels/SysUserInfoDto.cs
Normal file
28
DouyinApi.Model/ViewModels/SysUserInfoDto.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user