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()