This commit is contained in:
2024-01-10 15:17:02 +08:00
parent 5f778af7b2
commit 66e05a8501
3 changed files with 16 additions and 2 deletions

View File

@@ -150,7 +150,9 @@ public class ClearingWithdrawInfoServiceImpl implements ClearingWithdrawInfoServ
statusDesc = "已提现";
}
vo.setStatusDesc(statusDesc);
vo.setCashAmt(clearingWithdrawInfo.getCreditedAmt());
vo.setCashAmt(clearingWithdrawInfo.getWithdrawAmt());
vo.setCreditedAmt(clearingWithdrawInfo.getCreditedAmt());
vo.setFeeAmt(clearingWithdrawInfo.getFeeAmt());
resultList.add(vo);
}
PageResponse pageResponse = PageResponse.builder()

View File

@@ -25,4 +25,12 @@ public class WithdrawInfoVO {
// 提现金额
private BigDecimal cashAmt;
// 到账金额
private BigDecimal creditedAmt;
/**
* 提现手续费
*/
private BigDecimal feeAmt;
}