Commit 3a212edf by 王祖波

Merge branch 'feature-nationcode' into 'master'

增加收货人区号

See merge request !2471
parents 955f4603 f82e79f1
......@@ -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