12345678910111213141516171819202122232425262728293031323334353637 |
- namespace ET.Server
- {
-
-
-
- public class PlayerInfo: Entity, IAwake
- {
-
- public long UserId { get; set; }
-
- public int LogicServerId { get; set; }
-
- public long CreatTime { get; set; }
-
- public long LoginTime { get; set; }
-
- public long LogoutTime { get; set; }
-
- public int PlayerType { get; set; }
-
- public string Name { get; set; }
-
- public int Sex { get; set; }
-
- public int Pro { get; set; }
-
- public long Exp { get; set; }
-
- public int Level { get; set; }
-
- public long Gold { get; set; }
- }
- }
|