| | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 体测预约管理查询VO |
| | | * 体测预约添加 |
| | | */ |
| | | @Data |
| | | public class QueryBodySideAppointmentVO { |
| | |
| | | private String phone; |
| | | private String learnerName; |
| | | private Integer learnerAge; |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date birthday; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm",timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8") |
| | | private Date appointmentTime; |
| | | private Integer status; |
| | | private Integer state; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date insertTime; |
| | | private String provinceAndCity; |
| | | } |