- 订单添加 发货方式

- 配送信息 增加配送方式
This commit is contained in:
sin
2019-04-05 16:20:52 +08:00
parent 21bb6fd1c4
commit 8680064f8e
9 changed files with 162 additions and 7 deletions

View File

@@ -80,6 +80,15 @@ public class OrderItemBO implements Serializable {
* - 4、换货 + 退货
*/
private Integer hasReturnExchange;
/**
* 发货方式
*
* - 1 未选择
* - 2 在线下单
* - 3 自己联系快递
* - 4 无物流
*/
private Integer deliveryType;
/**
* 状态
*
@@ -121,6 +130,7 @@ public class OrderItemBO implements Serializable {
", receiverTime=" + receiverTime +
", closingTime=" + closingTime +
", hasReturnExchange=" + hasReturnExchange +
", deliveryType=" + deliveryType +
", status=" + status +
", createTime=" + createTime +
", updateTime=" + updateTime +
@@ -254,6 +264,15 @@ public class OrderItemBO implements Serializable {
return this;
}
public Integer getDeliveryType() {
return deliveryType;
}
public OrderItemBO setDeliveryType(Integer deliveryType) {
this.deliveryType = deliveryType;
return this;
}
public Integer getStatus() {
return status;
}

View File

@@ -30,6 +30,10 @@ public class OrderRecipientBO extends BaseDO {
* 收件手机号
*/
private String mobile;
/**
* 手机方式
*/
private Integer type;
/**
* 收件详细地址
*/
@@ -43,6 +47,7 @@ public class OrderRecipientBO extends BaseDO {
", areaNo='" + areaNo + '\'' +
", name='" + name + '\'' +
", mobile='" + mobile + '\'' +
", type=" + type +
", address='" + address + '\'' +
'}';
}
@@ -92,6 +97,15 @@ public class OrderRecipientBO extends BaseDO {
return this;
}
public Integer getType() {
return type;
}
public OrderRecipientBO setType(Integer type) {
this.type = type;
return this;
}
public String getAddress() {
return address;
}