/// <summary>
 /// 添加积分兑换
 /// </summary>
 /// <param name="model"></param>
 /// <returns></returns>
 public int InsertExchangeCenterConfig(ExchangeCenterConfig model)
 {
     try
     {
         return(DALExchangeCenterConfig.InsertExchangeCenterConfig(model));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception ex)
     {
         var exception = new ExchangeCenterConfigException(1, "InsertExchangeCenterConfig", ex);
         Logger.Log(Level.Error, exception, "InsertExchangeCenterConfig");
         throw ex;
     }
 }