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; }
-
- public int DeviceID { get; set; }
-
- public int UserType { get; set; }
-
- public int BanType { get; set; }
-
- public long BanBeginTime { get; set; }
-
- public long BanEndTime { get; set; }
-
- public string Ip { get; set; }
-
- public long CreateTime { get; set; }
- }
- }
|