|
@ -1,20 +1,24 @@
|
|
package com.yihu.mm.entity.medicine;
|
|
|
|
|
|
package com.yihu.mm.entity.medicine.questionnaire;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.yihu.mm.entity.IdEntity;
|
|
|
|
|
|
import com.yihu.mm.entity.medicine.IdEntity;
|
|
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
import javax.persistence.Table;
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
/**
|
|
* Created by Administrator on 2017/8/9.
|
|
* Created by Administrator on 2017/8/9.
|
|
*/
|
|
*/
|
|
public class MedicineAnswerLog extends IdEntity{
|
|
|
|
|
|
@Entity
|
|
|
|
@Table(name = "wlyy_medicine_anwser_log")
|
|
|
|
public class MedicineAnswerLog extends IdEntity {
|
|
|
|
|
|
private String patientCode; //客户code
|
|
private String patientCode; //客户code
|
|
private String tpId; //试卷编号
|
|
private String tpId; //试卷编号
|
|
private String tpName; //试卷名称
|
|
private String tpName; //试卷名称
|
|
|
|
private String pbType; //问卷类型
|
|
private Date createTime; //创建时间
|
|
private Date createTime; //创建时间
|
|
private String remark; //备注
|
|
|
|
private String problems; //问题的集合
|
|
private String problems; //问题的集合
|
|
|
|
|
|
public String getPatientCode() {
|
|
public String getPatientCode() {
|
|
@ -50,14 +54,6 @@ public class MedicineAnswerLog extends IdEntity{
|
|
this.createTime = createTime;
|
|
this.createTime = createTime;
|
|
}
|
|
}
|
|
|
|
|
|
public String getRemark() {
|
|
|
|
return remark;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setRemark(String remark) {
|
|
|
|
this.remark = remark;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getProblems() {
|
|
public String getProblems() {
|
|
return problems;
|
|
return problems;
|
|
}
|
|
}
|
|
@ -65,4 +61,12 @@ public class MedicineAnswerLog extends IdEntity{
|
|
public void setProblems(String problems) {
|
|
public void setProblems(String problems) {
|
|
this.problems = problems;
|
|
this.problems = problems;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public String getPbType() {
|
|
|
|
return pbType;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPbType(String pbType) {
|
|
|
|
this.pbType = pbType;
|
|
|
|
}
|
|
}
|
|
}
|