public Dictionary <string, Object> GetShopConfigList(string ShopID)
 {
     try
     {
         Dictionary <string, Object> dic = new Dictionary <string, object>();
         dynamic resultModel             = CommonRequest.ApiGetWeixinShopConfigList(ShopID);
         if (resultModel != null)
         {
             dic.Add("Data", resultModel.Result);
             return(dic);
         }
         return(null);
     }
     catch (Exception e)
     {
         logger.Error("获取首页轮播图接口异常:" + e.Message);
         return(null);
     }
 }