protected override EmptyResponseData ProcessRequest(APIRequest <SetVipWithDrawRuleRP> pRequest)
        {
            var loggingSessionInfo = new SessionManager().CurrentUserLoginInfo;

            if (loggingSessionInfo == null)
            {
                throw new APIException("用户未登录")
                      {
                          ErrorCode = ERROR_CODES.INVALID_REQUEST
                      }
            }
            ;
            VipWithDrawRuleBLL bll = new VipWithDrawRuleBLL(loggingSessionInfo);

            if (!bll.SetVipWithDrawRule(pRequest.Parameters))
            {
                throw new APIException(ERROR_CODES.INVALID_BUSINESS, "发生错误");
            }
            return(new EmptyResponseData());
        }
    }