Commit f2dd4c0f by 徐高华

自提截止时间

parent 4ebb887f
...@@ -128,6 +128,11 @@ public class OrderDetailVO implements Serializable { ...@@ -128,6 +128,11 @@ public class OrderDetailVO implements Serializable {
* 自提时间 * 自提时间
*/ */
private Date pickUpTime; private Date pickUpTime;
/**
* 自提截止时间
*/
private Date pickUpOverTime ;
// 核销码 // 核销码
private String writeOffCode ; private String writeOffCode ;
...@@ -139,7 +144,15 @@ public class OrderDetailVO implements Serializable { ...@@ -139,7 +144,15 @@ public class OrderDetailVO implements Serializable {
// 物流包裹列表 // 物流包裹列表
private List<String> orderLogisticsIdList ; private List<String> orderLogisticsIdList ;
public Date getPickUpOverTime() {
return pickUpOverTime;
}
public void setPickUpOverTime(Date pickUpOverTime) {
this.pickUpOverTime = pickUpOverTime;
}
public Integer getUsePoint() { public Integer getUsePoint() {
return usePoint; return usePoint;
} }
......
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