package com.kidgrow.oprationcenter.model;
import cn.afterturn.easypoi.excel.annotation.Excel;
import lombok.Data;
import java.io.Serializable;
/**
* 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020
*
* @Description:
* @Project:
* @CreateDate: Created in 2020/11/20 09:56
* @Author: dougang
*/
@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;
}