mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
保存提现金额信息
This commit is contained in:
@@ -700,6 +700,9 @@ public class AdapayService {
|
||||
record.setWithdrawCode(id);
|
||||
record.setOrderNo(orderNo);
|
||||
record.setWithdrawStatus(Constants.ZERO);
|
||||
record.setWithdrawAmt(adapayAccountBalanceVO.getAvlBalance()); // 申请提现金额
|
||||
record.setFeeAmt(feeAmt); // 提现手续费
|
||||
record.setCreditedAmt(cashAmt); // 到账金额
|
||||
Date now = new Date();
|
||||
record.setApplicationTime(now);
|
||||
record.setCreateTime(now);
|
||||
|
||||
@@ -2,6 +2,7 @@ package com.jsowell.pile.domain;
|
||||
|
||||
import lombok.*;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
@@ -38,6 +39,21 @@ public class ClearingWithdrawInfo {
|
||||
*/
|
||||
private String withdrawStatus;
|
||||
|
||||
/**
|
||||
* 提现金额
|
||||
*/
|
||||
private BigDecimal withdrawAmt;
|
||||
|
||||
/**
|
||||
* 提现手续费
|
||||
*/
|
||||
private BigDecimal feeAmt;
|
||||
|
||||
/**
|
||||
* 到账金额
|
||||
*/
|
||||
private BigDecimal creditedAmt;
|
||||
|
||||
/**
|
||||
* 申请时间
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user