|
@@ -45,6 +45,11 @@ public class NewShopOrder extends DataEntity<NewShopOrder> {
|
|
|
private Integer refundStatus;// int(11),
|
|
|
private BigInteger deliveryTimeMills;// bigint(20) comment '发货时间(时间戳)',
|
|
|
private Double needPayAmount;// decimal(20,2) comment '实付金额',
|
|
|
+ private Double realPay; // 实际支付金额
|
|
|
+ private Double eachDiscount; // 分摊优惠金额
|
|
|
+ private Double receiptAmount; // 已付金额
|
|
|
+ private Double restAmount; // 待付金额
|
|
|
+ private Integer shopReceiptStatus; // 子订单收款状态:1待收款,2部分收款,3已收款
|
|
|
private Double canRefundAmount;// float comment '退款金额',
|
|
|
private Double refundAmount;// float,
|
|
|
private Integer clubID;// int(11),
|
|
@@ -1147,4 +1152,44 @@ public class NewShopOrder extends DataEntity<NewShopOrder> {
|
|
|
public void setSvipShopReduction(Double svipShopReduction) {
|
|
|
this.svipShopReduction = svipShopReduction;
|
|
|
}
|
|
|
+
|
|
|
+ public Double getRealPay() {
|
|
|
+ return realPay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRealPay(Double realPay) {
|
|
|
+ this.realPay = realPay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getEachDiscount() {
|
|
|
+ return eachDiscount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEachDiscount(Double eachDiscount) {
|
|
|
+ this.eachDiscount = eachDiscount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getReceiptAmount() {
|
|
|
+ return receiptAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReceiptAmount(Double receiptAmount) {
|
|
|
+ this.receiptAmount = receiptAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getRestAmount() {
|
|
|
+ return restAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRestAmount(Double restAmount) {
|
|
|
+ this.restAmount = restAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getShopReceiptStatus() {
|
|
|
+ return shopReceiptStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShopReceiptStatus(Integer shopReceiptStatus) {
|
|
|
+ this.shopReceiptStatus = shopReceiptStatus;
|
|
|
+ }
|
|
|
}
|