|
@@ -57,11 +57,11 @@ public class CmMallShopOrder implements Serializable {
|
|
|
private Integer outStoreNum;//已经发货的商品数量
|
|
|
private Integer outStoreTimes;//第几批发货 default 0
|
|
|
private Integer returnGoodsStatus;
|
|
|
- private List<CmMallOrderProduct> cmMallOrderProducts; //订单商品信息
|
|
|
+ private List<CmMallOrderProduct> cmOrderProducts; //订单商品信息
|
|
|
private CmMallUserInvoiceInfo orderInvoice;//订单发票信息
|
|
|
- private List<CmMallLogisticsInfo> cmMallLogisticsInfos;//订单快递信息
|
|
|
- private List<CmMallLogisticsBatch> cmMallLogisticsBatches;//物流批次信息
|
|
|
- private List<CmMallLogisticsRecord> cmMallLogisticsRecords; //发货物流记录
|
|
|
+ private List<CmMallLogisticsInfo> logisticsInfos;//订单快递信息
|
|
|
+ private List<CmMallLogisticsBatch> cmLogisticsBatches;//物流批次信息
|
|
|
+ private List<CmMallLogisticsRecord> cmLogisticsRecords; //发货物流记录
|
|
|
private String payStatus; //(付款供应商)付款状态:1待付款、2部分付款、3已付款'
|
|
|
private String sendOutStatus; //发货状态:1待发货、2部分发货、3已发货
|
|
|
private Double shopProductAmount; //商品费
|
|
@@ -427,13 +427,7 @@ public class CmMallShopOrder implements Serializable {
|
|
|
this.shopName = shopName;
|
|
|
}
|
|
|
|
|
|
- public List<CmMallOrderProduct> getCmMallOrderProducts() {
|
|
|
- return cmMallOrderProducts;
|
|
|
- }
|
|
|
|
|
|
- public void setCmMallOrderProducts(List<CmMallOrderProduct> cmMallOrderProducts) {
|
|
|
- this.cmMallOrderProducts = cmMallOrderProducts;
|
|
|
- }
|
|
|
|
|
|
public CmMallUserInvoiceInfo getOrderInvoice() {
|
|
|
return orderInvoice;
|
|
@@ -443,21 +437,6 @@ public class CmMallShopOrder implements Serializable {
|
|
|
this.orderInvoice = orderInvoice;
|
|
|
}
|
|
|
|
|
|
- public List<CmMallLogisticsInfo> getCmMallLogisticsInfos() {
|
|
|
- return cmMallLogisticsInfos;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCmMallLogisticsInfos(List<CmMallLogisticsInfo> cmMallLogisticsInfos) {
|
|
|
- this.cmMallLogisticsInfos = cmMallLogisticsInfos;
|
|
|
- }
|
|
|
-
|
|
|
- public List<CmMallLogisticsBatch> getCmMallLogisticsBatches() {
|
|
|
- return cmMallLogisticsBatches;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCmMallLogisticsBatches(List<CmMallLogisticsBatch> cmMallLogisticsBatches) {
|
|
|
- this.cmMallLogisticsBatches = cmMallLogisticsBatches;
|
|
|
- }
|
|
|
|
|
|
public String getPayStatus() {
|
|
|
return payStatus;
|
|
@@ -523,12 +502,36 @@ public class CmMallShopOrder implements Serializable {
|
|
|
this.shopOtherFee = shopOtherFee;
|
|
|
}
|
|
|
|
|
|
- public List<CmMallLogisticsRecord> getCmMallLogisticsRecords() {
|
|
|
- return cmMallLogisticsRecords;
|
|
|
+ public List<CmMallOrderProduct> getCmOrderProducts() {
|
|
|
+ return cmOrderProducts;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCmOrderProducts(List<CmMallOrderProduct> cmOrderProducts) {
|
|
|
+ this.cmOrderProducts = cmOrderProducts;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<CmMallLogisticsInfo> getLogisticsInfos() {
|
|
|
+ return logisticsInfos;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLogisticsInfos(List<CmMallLogisticsInfo> logisticsInfos) {
|
|
|
+ this.logisticsInfos = logisticsInfos;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<CmMallLogisticsBatch> getCmLogisticsBatches() {
|
|
|
+ return cmLogisticsBatches;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCmLogisticsBatches(List<CmMallLogisticsBatch> cmLogisticsBatches) {
|
|
|
+ this.cmLogisticsBatches = cmLogisticsBatches;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<CmMallLogisticsRecord> getCmLogisticsRecords() {
|
|
|
+ return cmLogisticsRecords;
|
|
|
}
|
|
|
|
|
|
- public void setCmMallLogisticsRecords(List<CmMallLogisticsRecord> cmMallLogisticsRecords) {
|
|
|
- this.cmMallLogisticsRecords = cmMallLogisticsRecords;
|
|
|
+ public void setCmLogisticsRecords(List<CmMallLogisticsRecord> cmLogisticsRecords) {
|
|
|
+ this.cmLogisticsRecords = cmLogisticsRecords;
|
|
|
}
|
|
|
|
|
|
public Integer getClubID() {
|