Commit d42274cb by chongli

赛事订单导出表格中增加余额退款和优惠券退款金额列

parent 829ce18c
......@@ -37,7 +37,14 @@ public class CourseOrderListExcelBean extends CourseOrderListBean {
* 退款金额
*/
private BigDecimal refundAmount;
/**
* 优惠券退款
*/
private BigDecimal voucherRefundAmount;
/**
* 余额退款
*/
private BigDecimal prePayCardRefundAmount;
/**
* 预存款金额
*/
......@@ -122,8 +129,24 @@ public class CourseOrderListExcelBean extends CourseOrderListBean {
public void setRefundAmount(BigDecimal refundAmount) {
this.refundAmount = refundAmount;
}
public BigDecimal getVoucherRefundAmount() {
return voucherRefundAmount;
}
public void setVoucherRefundAmount(BigDecimal voucherRefundAmount) {
this.voucherRefundAmount = voucherRefundAmount;
}
public BigDecimal getPrePayCardRefundAmount() {
return prePayCardRefundAmount;
}
public void setPrePayCardRefundAmount(BigDecimal prePayCardRefundAmount) {
this.prePayCardRefundAmount = prePayCardRefundAmount;
}
public BigDecimal getDepositAmount() {
public BigDecimal getDepositAmount() {
return depositAmount;
}
......
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 sign in to comment