yujian
2019-08-27 81ee25c8d585f68cd4af784b3000b583d0a03393
fanli/src/main/java/com/yeshi/fanli/controller/client/v2/UserCouponControllerV2.java
@@ -161,8 +161,10 @@
         return;
      }
      try {
         String tips = UserSystemCouponService.giveCoupon(uid, id);
         out.print(JsonUtil.loadTrueResult(tips));
         UserSystemCouponVO vo = UserSystemCouponService.giveCoupon(uid, id);
         JSONObject data = new JSONObject();
         data.put("result", JsonUtil.getApiCommonGson().toJson(vo));
         out.print(JsonUtil.loadTrueResult(data));
      } catch (UserSystemCouponException e) {
         out.print(JsonUtil.loadFalseResult(1, e.getMsg()));
      }