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