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 EthicalReviewVO {
|
|
private Long id;
|
private String donorno;
|
private String recordstate;
|
private String name;
|
private String sex;
|
//private Long idcardtype;
|
private String idcardno;
|
private Long age;
|
private String birthday;
|
private String nationality;
|
private String nation;
|
private String registeraddress;
|
private String registerprovince;
|
private String registerprovincename;
|
private String registercity;
|
private String registercityname;
|
private String registertown;
|
private String registertownname;
|
private String registercommunity;
|
private String registercommunityname;
|
private String registercountycode;
|
private String registercountyname;
|
private String treatmenthospitalno;
|
private String treatmenthospitalname;
|
private String treatmentdeptname;
|
private String diagnosisno;
|
private String diagnosisname;
|
private String reporterno;
|
private String reportername;
|
private String reporterphone;
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date reporttime;
|
private String bloodtype;
|
private Long rhyin;
|
private String inpatientno;
|
private String illnessoverview;
|
private String diseasetype;
|
private String patientstate;
|
private Long fcid;
|
// private String expertopinion;
|
// private String expertconclusion;
|
// private String expertname;
|
// @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
// private Date conclusiontime;
|
// private String conclusionannex;
|
// private String conclusionorder;
|
|
private Long infoid;
|
private String fcdonorno;
|
private String flowname;
|
private String flowannex;
|
private String flowcontent;
|
private String flowconclusion;
|
private Long delFlag;
|
private String createBy;
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date createTime;
|
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;
|
}
|