|
@@ -108,6 +108,7 @@ public class NewOrder extends DataEntity<NewOrder> {
|
|
|
private String applyReturnedPurchaseFlag;//0不可以申请,1可以申请(此标记只用于是否存在审核中或者审核不通过记录,存在记录则不可以申请)
|
|
|
private String spName;
|
|
|
private Integer serviceProviderId; //协销Id
|
|
|
+ private Integer settleStatus; //结算状态 1未结算2部分结算3已结算
|
|
|
|
|
|
private String productName; //商品名称(根据商品名称筛选订单)
|
|
|
private List<NewOrderProduct> orderProduct;// 订单内的商品集合
|
|
@@ -179,6 +180,14 @@ public class NewOrder extends DataEntity<NewOrder> {
|
|
|
this.promotions = promotions;
|
|
|
}
|
|
|
|
|
|
+ public Integer getSettleStatus() {
|
|
|
+ return settleStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSettleStatus(Integer settleStatus) {
|
|
|
+ this.settleStatus = settleStatus;
|
|
|
+ }
|
|
|
+
|
|
|
public Double getPromotionFullReduction() {
|
|
|
return promotionFullReduction;
|
|
|
}
|