| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | /** |
| | | * 主键id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | private Long id; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 预约时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date reserveTime; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createAt; |
| | | |
| | | /** |
| | |
| | | private Long updateBy; |
| | | |
| | | /** |
| | | * 状态(1.待处理 2.预约成功 3.预约失败 4.已取消) |
| | | * 处理人id |
| | | */ |
| | | public interface status{ |
| | | int dcl = 1; |
| | | int yycg = 2; |
| | | int yysb = 3; |
| | | int yqx = 4; |
| | | } |
| | | private Long handleId; |
| | | |
| | | @Override |
| | | public String toString() { |
| | |
| | | ", updateBy=" + updateBy + |
| | | "}"; |
| | | } |
| | | |
| | | /** |
| | | * 状态(1.待处理 2.预约成功 3.预约失败 4.已取消) |
| | | */ |
| | | public interface status{ |
| | | int dcl = 1; |
| | | int cg = 2; |
| | | int sb = 3; |
| | | int yqx = 4; |
| | | } |
| | | /** |
| | | * 类型(1.预约 2.登记) |
| | | */ |
| | | public interface type{ |
| | | int yy=1; |
| | | int dj=2; |
| | | } |
| | | } |