yuliang 5 years ago
parent
commit
cd62715387
1 changed files with 15 additions and 15 deletions
  1. 15 15
      whepi-web/src/main/java/com/bofeng/entity/MsReport.java

+ 15 - 15
whepi-web/src/main/java/com/bofeng/entity/MsReport.java

@@ -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 = "";
         }