|
@ -0,0 +1,89 @@
|
|
|
package com.yihu.wlyy.entity.patient;/**
|
|
|
* Created by nature of king on 2018/7/12.
|
|
|
*/
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.yihu.wlyy.entity.IdEntity;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* @author wangzhinan
|
|
|
* @create 2018-07-12 14:36
|
|
|
* @desc 居民取消关注日志
|
|
|
**/
|
|
|
@Entity
|
|
|
@Table(name = "wlyy_patient_record_log")
|
|
|
public class PatientRecordLog extends IdEntity implements Serializable{
|
|
|
|
|
|
@Column(name = "patient")
|
|
|
private String patient;
|
|
|
|
|
|
@Column(name = "patient_name")
|
|
|
private String patientName;
|
|
|
|
|
|
@Column(name = "idCard")
|
|
|
private String idCard;
|
|
|
|
|
|
@Column(name = "ssc")
|
|
|
private String ssc;
|
|
|
|
|
|
@Column(name = "open_id")
|
|
|
private String openId;
|
|
|
|
|
|
@Column(name = "czrq")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
private Date czrq;
|
|
|
|
|
|
public String getPatient() {
|
|
|
return patient;
|
|
|
}
|
|
|
|
|
|
public void setPatient(String patient) {
|
|
|
this.patient = patient;
|
|
|
}
|
|
|
|
|
|
public String getPatientName() {
|
|
|
return patientName;
|
|
|
}
|
|
|
|
|
|
public void setPatientName(String patientName) {
|
|
|
this.patientName = patientName;
|
|
|
}
|
|
|
|
|
|
public String getIdCard() {
|
|
|
return idCard;
|
|
|
}
|
|
|
|
|
|
public void setIdCard(String idCard) {
|
|
|
this.idCard = idCard;
|
|
|
}
|
|
|
|
|
|
public String getSsc() {
|
|
|
return ssc;
|
|
|
}
|
|
|
|
|
|
public void setSsc(String ssc) {
|
|
|
this.ssc = ssc;
|
|
|
}
|
|
|
|
|
|
public String getOpenId() {
|
|
|
return openId;
|
|
|
}
|
|
|
|
|
|
public void setOpenId(String openId) {
|
|
|
this.openId = openId;
|
|
|
}
|
|
|
|
|
|
public Date getCzrq() {
|
|
|
return czrq;
|
|
|
}
|
|
|
|
|
|
public void setCzrq(Date czrq) {
|
|
|
this.czrq = czrq;
|
|
|
}
|
|
|
}
|