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

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

            return(TransModel(dbEntity));
        }