|
@@ -102,12 +102,13 @@ public class MarkMtFeesController {
|
|
|
return map;
|
|
|
}
|
|
|
FundDetail fund = result.getData();
|
|
|
- Map<String, String> payInfo = new HashMap<>();
|
|
|
+ Map<String, Object> payInfo = new HashMap<>();
|
|
|
payInfo.put("totalCost", fund.getTotalCost());
|
|
|
payInfo.put("fundPay", fund.getFundPay());
|
|
|
payInfo.put("cashPay", fund.getCashPay());
|
|
|
payInfo.put("acctPay", fund.getAcctPay());
|
|
|
payInfo.put("selfPay", fund.getSelfPay());
|
|
|
+ payInfo.put("cardType", fund.getCardType());
|
|
|
map.put("code", 0);
|
|
|
map.put("msg", "成功。");
|
|
|
map.put("payInfo", payInfo);
|