排队取号顺延之后支持重复取号

This commit is contained in:
2024-09-23 10:59:48 +08:00
parent 2eff0601c7
commit 871b0c5262
2 changed files with 9 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ public class TbCallQueue {
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@Column(name = "cancel_time")
private Date cancelTime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@Column(name = "confirm_time")
private Date confirmTime;
@@ -84,4 +84,7 @@ public class TbCallQueue {
@Column(name = "create_day")
private String createDay;
@Column(name = "is_postpone")
private Integer isPostpone;
}