|
@ -111,6 +111,13 @@ public class SurveyScreenResultVo{
|
|
|
@ApiModelProperty("筛查家庭医生姓名")
|
|
|
private String doctorName;
|
|
|
|
|
|
@ApiModelProperty("第三方筛查结果返回的id")
|
|
|
private String thirdId;
|
|
|
@ApiModelProperty("评估来源【1.前台三合一 2. 前台独立 3.后台自动 4.i健康】")
|
|
|
private String thirdSource;
|
|
|
@ApiModelProperty("第三方返回的筛查建议")
|
|
|
private String thirdAdvice;
|
|
|
|
|
|
public SurveyScreenResultVo() {
|
|
|
}
|
|
|
|
|
@ -369,4 +376,28 @@ public class SurveyScreenResultVo{
|
|
|
public void setDoctorName(String doctorName) {
|
|
|
this.doctorName = doctorName;
|
|
|
}
|
|
|
|
|
|
public String getThirdId() {
|
|
|
return thirdId;
|
|
|
}
|
|
|
|
|
|
public void setThirdId(String thirdId) {
|
|
|
this.thirdId = thirdId;
|
|
|
}
|
|
|
|
|
|
public String getThirdSource() {
|
|
|
return thirdSource;
|
|
|
}
|
|
|
|
|
|
public void setThirdSource(String thirdSource) {
|
|
|
this.thirdSource = thirdSource;
|
|
|
}
|
|
|
|
|
|
public String getThirdAdvice() {
|
|
|
return thirdAdvice;
|
|
|
}
|
|
|
|
|
|
public void setThirdAdvice(String thirdAdvice) {
|
|
|
this.thirdAdvice = thirdAdvice;
|
|
|
}
|
|
|
}
|