Commit 1630290d by guojuxing

转账审批详情

parent 3b1929c8
......@@ -61,6 +61,8 @@ public class TransferAccountsApprovalController {
vo.setPayInfoSerialNumber(order.getPayInfoSerialNumber());
vo.setCouponCardContent(order.getCouponCardContent());
vo.setCouponCardName(order.getCouponCardName());
vo.setTotalFeePaid(order.getTotalFeePaid());
vo.setTotalFee(order.getTotalFee());
return RestResponse.success(vo);
} else {
return EnterpriseRestResponse.failure(orderDetail);
......
......@@ -96,6 +96,16 @@ public class TransferApprovalSmsVO implements Serializable{
*/
private String couponCardName;
/**
* 应付金额
*/
private Double totalFee;
/**
* 实付金额
*/
private Double totalFeePaid;
public Integer getTransferApprovalId() {
return transferApprovalId;
}
......@@ -215,4 +225,20 @@ public class TransferApprovalSmsVO implements Serializable{
public void setCouponCardName(String couponCardName) {
this.couponCardName = couponCardName;
}
public Double getTotalFee() {
return totalFee;
}
public void setTotalFee(Double totalFee) {
this.totalFee = totalFee;
}
public Double getTotalFeePaid() {
return totalFeePaid;
}
public void setTotalFeePaid(Double totalFeePaid) {
this.totalFeePaid = totalFeePaid;
}
}
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