BackAccount.cs 541 B

1234567891011121314151617181920212223242526272829
  1. namespace ET
  2. {
  3. public class BackAccount : Entity, IAwake
  4. {
  5. //账户名
  6. public string Account;
  7. //账户密码
  8. public string Password;
  9. //8位生日数字
  10. public string Birth { get; set; }
  11. //账号创建时间
  12. public long CreateTime;
  13. //账号类型
  14. public int AccountType;
  15. //最近登录的服务器
  16. public int RecentServerId;
  17. //平台id
  18. public int PlatformId;
  19. //渠道id
  20. public int ChannelId;
  21. }
  22. }