public bool UpdatePersonalCenterCouponConfig(PersonalCenterCouponConfig model)
 {
     try
     {
         return(DALExchangeCenterConfig.UpdatePersonalCenterCouponConfig(model));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception ex)
     {
         var exception = new ExchangeCenterConfigException(1, "InsertPersonalCenterCouponConfig", ex);
         Logger.Log(Level.Error, exception, "InsertPersonalCenterCouponConfig");
         throw ex;
     }
 }