|
@ -0,0 +1,97 @@
|
|
|
package com.yihu.wlyy.entity.patient;
|
|
|
|
|
|
import com.yihu.wlyy.entity.IdEntity;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* Created by Trick on 2018/1/4.
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "wlyy_track_patient")
|
|
|
public class TrackPatient extends IdEntity {
|
|
|
|
|
|
private String patientCode;//关联居民code,医生的重点关注对象
|
|
|
private String patientName;//患者姓名
|
|
|
private String doctorCode;//所属医生
|
|
|
private String doctorName;//所属医生名
|
|
|
private Integer teamCode;//居民签约团队
|
|
|
private String idcard;//身份证号
|
|
|
private String ssc;//社保卡号
|
|
|
private Date createTime;//创建时间
|
|
|
private Date updateTime;//更新时间
|
|
|
|
|
|
public String getPatientCode() {
|
|
|
return patientCode;
|
|
|
}
|
|
|
|
|
|
public void setPatientCode(String patientCode) {
|
|
|
this.patientCode = patientCode;
|
|
|
}
|
|
|
|
|
|
public String getPatientName() {
|
|
|
return patientName;
|
|
|
}
|
|
|
|
|
|
public void setPatientName(String patientName) {
|
|
|
this.patientName = patientName;
|
|
|
}
|
|
|
|
|
|
public String getDoctorCode() {
|
|
|
return doctorCode;
|
|
|
}
|
|
|
|
|
|
public void setDoctorCode(String doctorCode) {
|
|
|
this.doctorCode = doctorCode;
|
|
|
}
|
|
|
|
|
|
public String getDoctorName() {
|
|
|
return doctorName;
|
|
|
}
|
|
|
|
|
|
public void setDoctorName(String doctorName) {
|
|
|
this.doctorName = doctorName;
|
|
|
}
|
|
|
|
|
|
public Integer getTeamCode() {
|
|
|
return teamCode;
|
|
|
}
|
|
|
|
|
|
public void setTeamCode(Integer teamCode) {
|
|
|
this.teamCode = teamCode;
|
|
|
}
|
|
|
|
|
|
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 Date getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
|
|
|
public Date getUpdateTime() {
|
|
|
return updateTime;
|
|
|
}
|
|
|
|
|
|
public void setUpdateTime(Date updateTime) {
|
|
|
this.updateTime = updateTime;
|
|
|
}
|
|
|
}
|