|
@@ -108,7 +108,7 @@ public class MsReport {
|
|
|
@ApiModelProperty("用户编号")
|
|
|
@TableField(exist = false)
|
|
|
private Long userId;
|
|
|
- @ApiModelProperty("是否有过确诊:0无,1有")
|
|
|
+ @ApiModelProperty("是否有过确诊:0否,1是")
|
|
|
@TableField(exist = false)
|
|
|
private Integer isSure;
|
|
|
@ExcelProperty(value = "是否有过确诊", index = 4)
|
|
@@ -116,16 +116,16 @@ public class MsReport {
|
|
|
|
|
|
public String getIsSureMsg() {
|
|
|
if (isSure == 0) {
|
|
|
- isSureMsg = "无";
|
|
|
+ isSureMsg = "否";
|
|
|
} else if (isSure == 1) {
|
|
|
- isSureMsg = "有";
|
|
|
+ isSureMsg = "是";
|
|
|
} else{
|
|
|
isSureMsg = "";
|
|
|
}
|
|
|
return isSureMsg;
|
|
|
}
|
|
|
|
|
|
- @ApiModelProperty("是否有过疑似:0无,1有")
|
|
|
+ @ApiModelProperty("是否有过疑似:0否,1是")
|
|
|
@TableField(exist = false)
|
|
|
private Integer isSuspected;
|
|
|
@ExcelProperty(value = "是否有过疑似", index = 5)
|
|
@@ -133,9 +133,9 @@ public class MsReport {
|
|
|
|
|
|
public String getIsSuspectedMsg() {
|
|
|
if (isSuspected == 0) {
|
|
|
- isSuspectedMsg = "无";
|
|
|
+ isSuspectedMsg = "否";
|
|
|
} else if (isSuspected == 1) {
|
|
|
- isSuspectedMsg = "有";
|
|
|
+ isSuspectedMsg = "是";
|
|
|
} else{
|
|
|
isSuspectedMsg = "";
|
|
|
}
|
|
@@ -146,7 +146,7 @@ public class MsReport {
|
|
|
@ApiModelProperty("是否有过病史:病史+时间")
|
|
|
@TableField(exist = false)
|
|
|
private String isSymptom;
|
|
|
- @ApiModelProperty("是否有过接触:0无,1有")
|
|
|
+ @ApiModelProperty("是否有过接触:0否,1是")
|
|
|
@TableField(exist = false)
|
|
|
private Integer isContact;
|
|
|
@ExcelProperty(value = "是否有过接触", index = 6)
|
|
@@ -154,16 +154,16 @@ public class MsReport {
|
|
|
|
|
|
public String getIsContactMsg() {
|
|
|
if (isContact == 0) {
|
|
|
- isContactMsg = "无";
|
|
|
+ isContactMsg = "否";
|
|
|
} else if (isContact == 1) {
|
|
|
- isContactMsg = "有";
|
|
|
+ isContactMsg = "是";
|
|
|
} else{
|
|
|
isContactMsg = "";
|
|
|
}
|
|
|
return isContactMsg;
|
|
|
}
|
|
|
|
|
|
- @ApiModelProperty("家人是否有过确诊:0无,1有")
|
|
|
+ @ApiModelProperty("家人是否有过确诊:0否,1是")
|
|
|
@TableField(exist = false)
|
|
|
private Integer isFamliyContact;
|
|
|
@ExcelProperty(value = "家人是否有过确诊", index = 7)
|
|
@@ -171,16 +171,16 @@ public class MsReport {
|
|
|
|
|
|
public String getIsFamliyContactMsg() {
|
|
|
if (isFamliyContact == 0) {
|
|
|
- isFamliyContactMsg = "无";
|
|
|
+ isFamliyContactMsg = "否";
|
|
|
} else if (isFamliyContact == 1) {
|
|
|
- isFamliyContactMsg = "有";
|
|
|
+ isFamliyContactMsg = "是";
|
|
|
} else{
|
|
|
isFamliyContactMsg = "";
|
|
|
}
|
|
|
return isFamliyContactMsg;
|
|
|
}
|
|
|
|
|
|
- @ApiModelProperty("异地返回是否超过14天:0无,1有")
|
|
|
+ @ApiModelProperty("异地返回是否超过14天:0否,1是")
|
|
|
@TableField(exist = false)
|
|
|
private Integer isWork;
|
|
|
@ExcelProperty(value = "异地返回是否超过14天", index = 9)
|
|
@@ -188,9 +188,9 @@ public class MsReport {
|
|
|
|
|
|
public String getIsWorkMsg() {
|
|
|
if (isWork == 0) {
|
|
|
- isWorkMsg = "无";
|
|
|
+ isWorkMsg = "否";
|
|
|
} else if (isWork == 1) {
|
|
|
- isWorkMsg = "有";
|
|
|
+ isWorkMsg = "是";
|
|
|
} else{
|
|
|
isWorkMsg = "";
|
|
|
}
|