| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System.Collections.Generic;
- namespace ET
- {
- public enum AccountType
- {
- General = 0,
- BlackList = 1
- }
- public class AccountInfo : Entity, IAwake
- {
- public string StrId = "";
- //账户名
- public string Account;
- //账户密码
- public string Password;
- //8位生日数字
- public string Birth { get; set; }
- //账号创建时间,毫秒
- public long CreateTime;
- //账号类型
- public int AccountType;
- //最近登录的服务器
- public int RecentServerId;
- //平台id
- public int PlatformId;
- //渠道id
- public int ChannelId;
- //申请删除账号的时间,毫秒
- public long DeleteTime;
- //名字
- public string NameMD5;
- //身份证号
- public string IdentityNumMD5;
- //手机号码
- public string PhoneNumber;
- //最近一次绑定手机号的时间 毫秒级时间戳
- public long LastBindingPhoneNumberTime;
-
- //新的官方账户
- public string NewAccount;
-
- //新的官方密码
- public string NewPassword;
-
-
- }
- }
|