课程按次按时逻辑调整

This commit is contained in:
limqhz
2023-12-06 19:44:08 +08:00
parent 137a5f87ce
commit b4f9663bb2
11 changed files with 294 additions and 70 deletions

View File

@@ -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;
}
}