zhaowenxuan
7 天以前 0892d843cd394f383ff50f480f7f22f2ec3829bc
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
package com.ltkj.hosp.vodomain;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ltkj.common.annotation.Excel;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @Author: 西安路泰科技有限公司/赵佳豪
 * @Date: 2022/12/19 11:04
 */
@Data
public class DiseaseVo {
 
    @Excel(name = "体检人员")
    private String name;
    @Excel(name = "性别")
    private Integer sex;
    @Excel(name = "年龄")
    private Integer age;
    @Excel(name = "联系电话")
    private String phone;
    @Excel(name = "家庭电话")
    private String familyPhone;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm")
    @Excel(name = "最近体检时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date tjTime;
    @Excel(name = "复查标记")
    private String type;
}