chunping 3 years ago
parent
commit
b9c93e3281

+ 1 - 0
mp-admin/src/main/java/com/qs/mp/web/controller/api/channel/ChannelWithdrawController.java

@@ -116,6 +116,7 @@ public class ChannelWithdrawController extends BaseApiController {
     redisCache.setCacheObject(CHANNEL_WITHDRAW_CACHE_KEY + channelId, channelWithdraw, 1, TimeUnit.MINUTES);
 
     JSONObject jsonObject = new JSONObject();
+    jsonObject.put("withdrawAmt", channelWithdraw.getMoney());
     jsonObject.put("chargeAmt", channelWithdraw.getChargeAmt());
     jsonObject.put("chargeRate", feeRate);
     return AjaxResult.success(jsonObject);