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.
44 lines
902 B
44 lines
902 B
using System.Collections; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
using System; |
|
|
|
public class User |
|
{ |
|
|
|
public User() |
|
{ |
|
|
|
} |
|
//用户ID |
|
public long Id; |
|
//用户名 |
|
public string Username; |
|
//密码 |
|
public string Password; |
|
//真实姓名 |
|
public string RealName; |
|
//注册时间 |
|
public DateTime RegisterTime; |
|
//是否可用状态 |
|
public int UserState; |
|
//所属组织机构ID |
|
public int OrganizationId; |
|
//性别:0表示男,1表示女 |
|
public int? Gender; |
|
//头像 |
|
public int? HeadPortrait; |
|
//邮箱 |
|
public string Mail; |
|
//电话 |
|
public string Phone; |
|
//QQ号码 |
|
public string QQ; |
|
//描述 |
|
public string Detail; |
|
//证件 |
|
public List<Certificate> Certificates = new List<Certificate>(); |
|
//用户拥有的角色 |
|
public List<UserRole> Roles = new List<UserRole>(); |
|
|
|
}
|
|
|