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; }