Commit d9eb3ba5 by unknown

add the vipdiscount of orderlist

parent 6a37b545
......@@ -31,6 +31,8 @@ public class AbstractOrderListItemBean {
private String remarks;
private String contactName;
private boolean canDelete;
/**正常下单后优惠的价格,不是一开始就知道的 优惠价格*/
private BigDecimal discountAfterOrderAmount;
public Integer getOrderType() {
return orderType;
......@@ -161,4 +163,13 @@ public class AbstractOrderListItemBean {
public void setCanDelete(boolean canDelete) {
this.canDelete = canDelete;
}
public BigDecimal getDiscountAfterOrderAmount() {
return discountAfterOrderAmount;
}
public void setDiscountAfterOrderAmount(BigDecimal discountAfterOrderAmount) {
this.discountAfterOrderAmount = discountAfterOrderAmount;
}
}
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