|
@ -0,0 +1,57 @@
|
|
|
|
package com.yihu.mm.entity;
|
|
|
|
|
|
|
|
import com.yihu.wlyy.entity.IdEntity;
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
import javax.persistence.Table;
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
@Entity
|
|
|
|
@Table(name = "patient_exam")
|
|
|
|
public class PatientExam extends IdEntity implements Serializable {
|
|
|
|
|
|
|
|
@Column(name="patient")
|
|
|
|
private String patient;
|
|
|
|
|
|
|
|
@Column(name="tp_id")
|
|
|
|
private String tpId;
|
|
|
|
|
|
|
|
@Column(name="ct_id")
|
|
|
|
private String ctId;
|
|
|
|
|
|
|
|
@Column(name="is_complete")
|
|
|
|
private Integer isComplete;
|
|
|
|
|
|
|
|
public String getPatient() {
|
|
|
|
return patient;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPatient(String patient) {
|
|
|
|
this.patient = patient;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getTpId() {
|
|
|
|
return tpId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTpId(String tpId) {
|
|
|
|
this.tpId = tpId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getCtId() {
|
|
|
|
return ctId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCtId(String ctId) {
|
|
|
|
this.ctId = ctId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Integer getIsComplete() {
|
|
|
|
return isComplete;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setIsComplete(Integer isComplete) {
|
|
|
|
this.isComplete = isComplete;
|
|
|
|
}
|
|
|
|
}
|