public override void HandleNotification(INotification notification)
    {
        switch (notification.Name)
        {
        case NotificationConst.levelChange:
            CharacterInfor ci = notification.Body as CharacterInfor;
            levelText.text = ci.Level.ToString();
            break;

        default:
            break;
        }
    }
 public TestProxy() : base(NAME)//
 {
     Data = new CharacterInfor();
 }