| 1234567891011121314151617181920212223242526272829 |
- namespace ET
- {
- public class BackAccount : Entity, IAwake
- {
- //账户名
- 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;
- }
- }
|