AccountInfo.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public enum AccountType
  5. {
  6. General = 0,
  7. BlackList = 1
  8. }
  9. public class AccountInfo : Entity, IAwake
  10. {
  11. public string StrId = "";
  12. //账户名
  13. public string Account;
  14. //账户密码
  15. public string Password;
  16. //8位生日数字
  17. public string Birth { get; set; }
  18. //账号创建时间,毫秒
  19. public long CreateTime;
  20. //账号类型
  21. public int AccountType;
  22. //最近登录的服务器
  23. public int RecentServerId;
  24. //平台id
  25. public int PlatformId;
  26. //渠道id
  27. public int ChannelId;
  28. //申请删除账号的时间,毫秒
  29. public long DeleteTime;
  30. //名字
  31. public string NameMD5;
  32. //身份证号
  33. public string IdentityNumMD5;
  34. //手机号码
  35. public string PhoneNumber;
  36. //最近一次绑定手机号的时间 毫秒级时间戳
  37. public long LastBindingPhoneNumberTime;
  38. //新的官方账户
  39. public string NewAccount;
  40. //新的官方密码
  41. public string NewPassword;
  42. }
  43. }