课程按次按时逻辑调整
This commit is contained in:
@@ -17,7 +17,9 @@ public class BarcodeOrderTime {
|
||||
|
||||
private Date orderEnd;
|
||||
|
||||
public BarcodeOrderTime(Integer id, Integer memberId, Integer venueId, Date createdTime, Date modifiedTime, Date orderStart, Date orderEnd) {
|
||||
private Integer status;
|
||||
|
||||
public BarcodeOrderTime(Integer id, Integer memberId, Integer venueId, Date createdTime, Date modifiedTime, Date orderStart, Date orderEnd, Integer status) {
|
||||
this.id = id;
|
||||
this.memberId = memberId;
|
||||
this.venueId = venueId;
|
||||
@@ -25,6 +27,7 @@ public class BarcodeOrderTime {
|
||||
this.modifiedTime = modifiedTime;
|
||||
this.orderStart = orderStart;
|
||||
this.orderEnd = orderEnd;
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public BarcodeOrderTime() {
|
||||
@@ -86,4 +89,12 @@ public class BarcodeOrderTime {
|
||||
public void setOrderEnd(Date orderEnd) {
|
||||
this.orderEnd = orderEnd;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user