123456789101112131415161718192021222324252627282930313233343536373839404142 |
- namespace ET.Server
- {
- /**
- * 账号信息
- */
- [ChildOf(typeof (Session))]
- public class UserInfo: Entity, IAwake
- {
- /** 账号 **/
- public string Account { get; set; }
- /** 密码 **/
- public string Password { get; set; }
- /** 渠道 **/
- public int Channel { get; set; }
- /** 子渠道 **/
- public int SubChannel { get; set; }
- /** 设备 0:pc 1:ios 2:android **/
- public int DeviceID { get; set; }
- /** 用户类型 0:默认 1:黑名单 **/
- public int UserType { get; set; }
- /** 封禁类型 0:默认 1:永久封禁 2:时间封禁 **/
- public int BanType { get; set; }
- /** 封禁开始时间 **/
- public long BanBeginTime { get; set; }
- /** 封禁结束时间 **/
- public long BanEndTime { get; set; }
- /** 注册ip **/
- public string Ip { get; set; }
- /** 创建时间 **/
- public long CreateTime { get; set; }
- }
- }
|