|
|
@ -8,6 +8,9 @@ public class HighOrderModel { |
|
|
|
private String merchantName; |
|
|
|
private String merchantName; |
|
|
|
private String goodsType; |
|
|
|
private String goodsType; |
|
|
|
private String goodsName; |
|
|
|
private String goodsName; |
|
|
|
|
|
|
|
private String saleCount; |
|
|
|
|
|
|
|
private String goodsTotalPrice; |
|
|
|
|
|
|
|
private String goodsActualPrice; |
|
|
|
private String giveawayType; |
|
|
|
private String giveawayType; |
|
|
|
private String orderNo; |
|
|
|
private String orderNo; |
|
|
|
private String memName; |
|
|
|
private String memName; |
|
|
@ -31,6 +34,30 @@ public class HighOrderModel { |
|
|
|
private Integer goodsTypeId; |
|
|
|
private Integer goodsTypeId; |
|
|
|
private Integer orderStatusId; |
|
|
|
private Integer orderStatusId; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getSaleCount() { |
|
|
|
|
|
|
|
return saleCount; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setSaleCount(String saleCount) { |
|
|
|
|
|
|
|
this.saleCount = saleCount; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getGoodsTotalPrice() { |
|
|
|
|
|
|
|
return goodsTotalPrice; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setGoodsTotalPrice(String goodsTotalPrice) { |
|
|
|
|
|
|
|
this.goodsTotalPrice = goodsTotalPrice; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getGoodsActualPrice() { |
|
|
|
|
|
|
|
return goodsActualPrice; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setGoodsActualPrice(String goodsActualPrice) { |
|
|
|
|
|
|
|
this.goodsActualPrice = goodsActualPrice; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public Long getOrderId() { |
|
|
|
public Long getOrderId() { |
|
|
|
return orderId; |
|
|
|
return orderId; |
|
|
|
} |
|
|
|
} |
|
|
|