Commit f82e79f1 by 王祖波

增加收货人区号

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