44323
2023-11-27 aa925d851857f50eff0556411366690d9a78a0e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.dsh.activity.model;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 体测预约添加
 */
@Data
public class QueryBodySideAppointmentVO {
    private Integer id;
    private String province;
    private String provinceCode;
    private String city;
    private String cityCode;
    private Integer storeId;
    private String storeName;
    private String parentName;
    private String phone;
    private String learnerName;
    private Integer learnerAge;
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date birthday;
    @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")
    private Date insertTime;
    private String provinceAndCity;
}