Commit 2c303db8 authored by wujiang's avatar wujiang

提交代码

parent a4dab082
......@@ -94,5 +94,5 @@ public class HygfIcbcRecordExportDTO {
@ExcelProperty(value = "可用余额", index = 10)
@ApiModelProperty (value = "可用余额")
private String holdBalance;
private String accountBalance;
}
\ No newline at end of file
......@@ -697,7 +697,10 @@ public class HygfIcbcServiceImpl extends BaseService<HygfIcbcRecordDTO, HygfIcbc
SettlementAccountBalanceQueryResponseV1 res= (SettlementAccountBalanceQueryResponseV1) this.balanceQuery(dto.getMediumId());
if(res.isSuccess())
{
dto.setHoldBalance(String.valueOf(Integer.parseInt(res.getAccountBalance())/100.0));
dto.setAccountBalance(String.valueOf(Integer.parseInt(res.getAccountBalance())/100.0));
}else
{
dto.setAccountBalance(res.getReturnMsg());
}
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