private void DoGetUserInfo(string Uuid)
        {
            ServerResponse _serverResponse;

            if (!string.IsNullOrEmpty(Uuid))
            {
                UserRequest _userRequest = new UserRequest();
                _serverResponse = _userRequest.GetUserInfo(long.Parse(Uuid));
            }
            else
            {
                _serverResponse = new ServerResponse()
                {
                    Status  = 400,
                    Message = "uuid不能为空"
                };
            }
            Response.Write(JsonUtil.SerializeObject(_serverResponse));
            Response.End();
        }