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 DonateOrganVO {
|
|
private Long id;
|
private String donorno;
|
private String recordstate;
|
private String name;
|
private String sex;
|
private Long idcardtype;
|
private String idcardno;
|
private String age;
|
private String ageunit;
|
private String birthday;
|
private String phone;
|
private String nationality;
|
private String nativeplace;
|
private String nation;
|
private String diagnosisno;
|
private String treatmenthospitalno;
|
private String treatmenthospitalname;
|
private String treatmentdeptname;
|
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 Long doid;
|
private Long infoid;
|
private String dodonorno;
|
private String organno;
|
private String organname;
|
private String organstate;
|
private String organnumber;
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date organgettime;
|
private String organgetdoct;
|
private String gainhospitalno;
|
private String gainhospitalname;
|
private String transplanthospitalno;
|
private String transplanthospitalname;
|
private String transplantdoct;
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date transplanttime;
|
private String caseno;
|
private String isbiopsybefore;
|
private String isbiopsyafter;
|
private String ismarginalorgan;
|
private String ispathogenpositive;
|
private String ispnf;
|
private String isdgf;
|
private Long del_flag;
|
private String create_by;
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date create_time;
|
private String update_by;
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date update_time;
|
private String abandonreason;
|
private String reallocationreason;
|
private String leaderno;
|
private String leadername;
|
private String businessarea;
|
private String gainHospitalname;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date startorgangettime;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date endorgangettime;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date starttransplanttime;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date endtransplanttime;
|
}
|