Commit f82e79f1 by 王祖波

增加收货人区号

parent a733488c
...@@ -102,6 +102,11 @@ public class OrderDetailVO implements Serializable { ...@@ -102,6 +102,11 @@ public class OrderDetailVO implements Serializable {
private String buyerPhone; private String buyerPhone;
/** /**
* 收货人区号
*/
private String buyerNationcode;
/**
* 自提门店ID * 自提门店ID
*/ */
private String pickUpStoreId; private String pickUpStoreId;
...@@ -270,6 +275,14 @@ public class OrderDetailVO implements Serializable { ...@@ -270,6 +275,14 @@ public class OrderDetailVO implements Serializable {
this.buyerPhone = buyerPhone; this.buyerPhone = buyerPhone;
} }
public String getBuyerNationcode() {
return buyerNationcode;
}
public void setBuyerNationcode(String buyerNationcode) {
this.buyerNationcode = buyerNationcode;
}
public void setPickUpStoreId(String pickUpStoreId) { public void setPickUpStoreId(String pickUpStoreId) {
this.pickUpStoreId = pickUpStoreId; this.pickUpStoreId = pickUpStoreId;
} }
......
...@@ -112,6 +112,11 @@ public class OrderExchangeDetailVO implements Serializable { ...@@ -112,6 +112,11 @@ public class OrderExchangeDetailVO implements Serializable {
private String buyerPhone; private String buyerPhone;
/** /**
* 收货人区号
*/
private String buyerNationcode;
/**
* 买家物流号(退货物流) * 买家物流号(退货物流)
*/ */
private String buyerLogisticsCode; private String buyerLogisticsCode;
...@@ -787,6 +792,14 @@ public class OrderExchangeDetailVO implements Serializable { ...@@ -787,6 +792,14 @@ public class OrderExchangeDetailVO implements Serializable {
this.buyerPhone = buyerPhone; this.buyerPhone = buyerPhone;
} }
public String getBuyerNationcode() {
return buyerNationcode;
}
public void setBuyerNationcode(String buyerNationcode) {
this.buyerNationcode = buyerNationcode;
}
public void setBuyerLogisticsCode(String buyerLogisticsCode) { public void setBuyerLogisticsCode(String buyerLogisticsCode) {
this.buyerLogisticsCode = buyerLogisticsCode; this.buyerLogisticsCode = buyerLogisticsCode;
} }
......
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 to comment