Commit a4dab082 authored by wujiang's avatar wujiang

提交代码

parent 5fc674a2
...@@ -697,7 +697,7 @@ public class HygfIcbcServiceImpl extends BaseService<HygfIcbcRecordDTO, HygfIcbc ...@@ -697,7 +697,7 @@ public class HygfIcbcServiceImpl extends BaseService<HygfIcbcRecordDTO, HygfIcbc
SettlementAccountBalanceQueryResponseV1 res= (SettlementAccountBalanceQueryResponseV1) this.balanceQuery(dto.getMediumId()); SettlementAccountBalanceQueryResponseV1 res= (SettlementAccountBalanceQueryResponseV1) this.balanceQuery(dto.getMediumId());
if(res.isSuccess()) if(res.isSuccess())
{ {
dto.setHoldBalance(res.getAccountBalance()); dto.setHoldBalance(String.valueOf(Integer.parseInt(res.getAccountBalance())/100.0));
} }
return null; return null;
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment