forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSysUserInfoDto.cs
More file actions
28 lines (27 loc) · 1.08 KB
/
SysUserInfoDto.cs
File metadata and controls
28 lines (27 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Collections.Generic;
namespace Blog.Core.Model.ViewModels
{
public class SysUserInfoDto : SysUserInfoDtoRoot<int>
{
public string uLoginName { get; set; }
public string uLoginPWD { get; set; }
public string uRealName { get; set; }
public int uStatus { get; set; }
public int 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<int> Dids { get; set; }
public string DepartmentName { get; set; }
}
}