mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.panzhihua.common.model.vos.vaccines;
 
import java.util.Date;
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @auther lyq
 * @describe 疫苗登记记录
 */
@Data
@ApiModel("疫苗登记记录")
public class VaccinesEnrollByAdminVO {
 
    @ApiModelProperty("疫苗登记记录id")
    private Long id;
 
    @ApiModelProperty("姓名")
    private String name;
 
    @ApiModelProperty("年龄")
    private Integer age;
 
    @ApiModelProperty("职业")
    private String job;
 
    @ApiModelProperty("手机号")
    private String phone;
 
    @ApiModelProperty("身份证号码")
    private String idCard;
 
    @ApiModelProperty("登记时间")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date createAt;
 
    @ApiModelProperty("性别(1.男 2.女 3.未知)")
    private Integer sex;
 
    @ApiModelProperty("疫苗分类")
    private String vaccines;
 
}