forked from kidgrow-microservices-platform

dougang
2020-12-29 e73584955fd266c2452535ac31373bc6795aefe5
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.kidgrow.oprationcenter.model;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
 *
 * @Description: <br>
 * @Project: <br>
 * @CreateDate: Created in 2020/11/20 09:56 <br>
 * @Author: <a href="78125310@kidgrow.com">dougang</a>
 */
@Data
public class ScreeningHospitalDataExcel implements Serializable {
 
    private static final long serialVersionUID = -5886012896705137070L;
 
    @Excel(name = "机构编码", height = 20, width = 30, isImportField = "true_st")
    private String organizationNo;
 
    @Excel(name = "机构名称", height = 20, width = 30, isImportField = "true_st")
    private String organizationName;
 
    @Excel(name = "儿童ID", height = 20, width = 30, isImportField = "true_st")
    private String childId;
 
    @Excel(name = "儿童名称", height = 20, width = 30, isImportField = "true_st")
    private String childName;
 
    @Excel(name = "性别", replace = { "男_0", "女_1" }, isImportField = "true_st")
    private String childSex;
 
    @Excel(name = "出生日期", isImportField = "true_st", width = 20)
    private String childBirthday;
 
    @Excel(name = "联系方式", height = 20, width = 30, isImportField = "true_st")
    private String phoneNum;
 
    @Excel(name = "年龄", height = 20, width = 30, isImportField = "true_st")
    private String age;
 
    @Excel(name = "身高百分位", height = 20, width = 30, isImportField = "true_st")
    private String heightPer;
 
    @Excel(name = "体重", height = 20, width = 30, isImportField = "true_st")
    private String weight;
 
    @Excel(name = "体重状态", height = 20, width = 30, isImportField = "true_st")
    private String fatState;
 
    @Excel(name = "bmi", height = 20, width = 30, isImportField = "true_st")
    private String bmi;
 
    @Excel(name = "诊断时间",  isImportField = "true_st", width = 20)
    private String diagnoseTime;
 
    @Excel(name = "靶身高", height = 20, width = 30, isImportField = "true_st")
    private String targetHeight;
 
    @Excel(name = "预测身高", height = 20, width = 30, isImportField = "true_st")
    private String foreastHeight;
 
    @Excel(name = "预测身高百分位", height = 20, width = 30, isImportField = "true_st")
    private String foreastHeightPer;
}