package com.ruoyi.project.domain.vo; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import org.springframework.format.annotation.DateTimeFormat; import java.util.Date; @Data public class MedicalEvaluationVO { private Long id; private String name; private String sex; private String idcardno; private Long age; private String registeraddress; private String registerprovince; private String registerprovinceName; private String registercity; private String registercityname; private String registertown; private String registertownname; private String recordstate; private String treatmenthospitalno; private String treatmenthospitalname; private String diagnosisno; private String diagnosisname; private String donorno; private String diseasetype; private String patientstate; private String reportername; private String reporterno; @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date reporttime; private Long meid; private Long infoid; private String hospitalassesscontent; private String hospitalassessconclusion; private String provincialassesscontent; private String provincialassessconclusion; private String coreteamassesscontent; private String coreteamassessconclusion; private String illnessoverview; private String mediagnosisname; private String hospitalassessdoctor; @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date hospitalassesstime; private String provincialassessdoctor; @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date provincialassesstime; private String coreteamassessdoctor; @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date coreteamassesstime; private String assessannex; private Long delflag; @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date createtime; private String createby; private String updateby; @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date updatetime; private String basecreateby; @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date starttime; @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date endtime; private String city; }