1.排队取号 顺延支持重复取号

This commit is contained in:
2024-09-23 11:14:55 +08:00
parent 10916d2c5d
commit 43ef3695e1

View File

@@ -9,7 +9,7 @@ import java.util.Date;
import lombok.Data;
/**
*
* 叫号排号表
* @TableName tb_call_queue
*/
@TableName(value ="tb_call_queue")
@@ -111,6 +111,11 @@ public class TbCallQueue implements Serializable {
*/
private String createDay;
/**
* 是否已经顺延
*/
private Integer isPostpone;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
@@ -144,7 +149,8 @@ public class TbCallQueue implements Serializable {
&& (this.getSubState() == null ? other.getSubState() == null : this.getSubState().equals(other.getSubState()))
&& (this.getConfirmTime() == null ? other.getConfirmTime() == null : this.getConfirmTime().equals(other.getConfirmTime()))
&& (this.getCallNum() == null ? other.getCallNum() == null : this.getCallNum().equals(other.getCallNum()))
&& (this.getCreateDay() == null ? other.getCreateDay() == null : this.getCreateDay().equals(other.getCreateDay()));
&& (this.getCreateDay() == null ? other.getCreateDay() == null : this.getCreateDay().equals(other.getCreateDay()))
&& (this.getIsPostpone() == null ? other.getIsPostpone() == null : this.getIsPostpone().equals(other.getIsPostpone()));
}
@Override
@@ -170,6 +176,7 @@ public class TbCallQueue implements Serializable {
result = prime * result + ((getConfirmTime() == null) ? 0 : getConfirmTime().hashCode());
result = prime * result + ((getCallNum() == null) ? 0 : getCallNum().hashCode());
result = prime * result + ((getCreateDay() == null) ? 0 : getCreateDay().hashCode());
result = prime * result + ((getIsPostpone() == null) ? 0 : getIsPostpone().hashCode());
return result;
}
@@ -198,6 +205,7 @@ public class TbCallQueue implements Serializable {
sb.append(", confirmTime=").append(confirmTime);
sb.append(", callNum=").append(callNum);
sb.append(", createDay=").append(createDay);
sb.append(", isPostpone=").append(isPostpone);
sb.append(", serialVersionUID=").append(serialVersionUID);
sb.append("]");
return sb.toString();