update 个人桩预约

This commit is contained in:
Guoqs
2024-07-25 16:18:23 +08:00
parent 8f14e4e71d
commit b05a7e6ac2
9 changed files with 255 additions and 77 deletions

View File

@@ -28,6 +28,16 @@ public class PileReservationDTO {
*/
private String pileSn;
/**
* 开始时间 hh:mm:ss
*/
private String startTime;
/**
* 结束时间 hh:mm:ss
*/
private String endTime;
private Integer pageNo;
private Integer pageSize;
@@ -38,6 +48,11 @@ public class PileReservationDTO {
.append("memberId", memberId)
.append("reservedId", reservedId)
.append("status", status)
.append("pileSn", pileSn)
.append("startTime", startTime)
.append("endTime", endTime)
.append("pageNo", pageNo)
.append("pageSize", pageSize)
.toString();
}
}