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

            if (loggingSessionInfo == null)
            {
                throw new APIException("用户未登录")
                      {
                          ErrorCode = ERROR_CODES.INVALID_RESPONSE
                      };
            }
            WMaterialTextBLL bll = new WMaterialTextBLL(loggingSessionInfo);
            var           r      = bll.GetAllByCustomId();
            GetNewsListRD result = TransModel(r);

            return(result);
        }