|
@@ -27,6 +27,7 @@ public class ExcelRiBaoLYBM4 {
|
|
|
private int diarrhea = 0;
|
|
|
private int singleRoom = 0;
|
|
|
private int scoreRezult = 0;
|
|
|
+ private int temperatureScore = 0;
|
|
|
private int safetyNum = 0;
|
|
|
private int reportStatus = 0;
|
|
|
private int sureNum = 0;
|
|
@@ -230,16 +231,11 @@ public class ExcelRiBaoLYBM4 {
|
|
|
}
|
|
|
if (medical == 1) {
|
|
|
bingqingDesc += "已确诊、";
|
|
|
- }
|
|
|
- else if (medical == 2) {
|
|
|
+ } else if (medical == 2) {
|
|
|
bingqingDesc += "疑似、";
|
|
|
- }
|
|
|
-
|
|
|
- else if (medical == 3) {
|
|
|
+ } else if (medical == 3) {
|
|
|
bingqingDesc += "有接触史、";
|
|
|
- }
|
|
|
-
|
|
|
- else if (medical == 5) {
|
|
|
+ } else if (medical == 5) {
|
|
|
bingqingDesc += "解除隔离、";
|
|
|
}
|
|
|
|
|
@@ -294,6 +290,23 @@ public class ExcelRiBaoLYBM4 {
|
|
|
if (!Strings.isNullOrEmpty(others)) {
|
|
|
bingqingDesc += others;
|
|
|
}
|
|
|
+ bingqingDesc += "评分结果:";
|
|
|
+ if (scoreRezult == 0)
|
|
|
+ bingqingDesc += "未评估";
|
|
|
+ else if (scoreRezult == 1) {
|
|
|
+ if (temperatureScore > 1)
|
|
|
+ bingqingDesc += "正常,间隔时间服用退烧药,多休息,多喝水";
|
|
|
+ else
|
|
|
+ bingqingDesc += "正常";
|
|
|
+ } else if (scoreRezult == 2) {
|
|
|
+ if (temperatureScore > 1)
|
|
|
+ bingqingDesc += "注意观察,间隔时间服用退烧药,多休息,多喝水";
|
|
|
+ else
|
|
|
+ bingqingDesc += "注意观察";
|
|
|
+ } else if (scoreRezult == 3)
|
|
|
+ bingqingDesc += "联系社区医生(或者在线问诊)";
|
|
|
+ else if (scoreRezult == 4)
|
|
|
+ bingqingDesc += "尽快就诊";
|
|
|
return bingqingDesc;
|
|
|
}
|
|
|
|
|
@@ -305,13 +318,13 @@ public class ExcelRiBaoLYBM4 {
|
|
|
return "";
|
|
|
}
|
|
|
if (workLocal == 1) {
|
|
|
- workLoalDesc = "武汉";
|
|
|
+ workLoalDesc = "武汉市";
|
|
|
} else if (workLocal == 2) {
|
|
|
- workLoalDesc = "宜昌";
|
|
|
+ workLoalDesc = "宜昌市";
|
|
|
} else if (workLocal == 3) {
|
|
|
- workLoalDesc = "当阳";
|
|
|
- }else if (workLocal == 4) {
|
|
|
- workLoalDesc = workLocalOther;
|
|
|
+ workLoalDesc = "当阳市";
|
|
|
+ } else if (workLocal == 4) {
|
|
|
+ workLoalDesc = "其它地点_" + workLocalOther;
|
|
|
}
|
|
|
return workLoalDesc;
|
|
|
}
|
|
@@ -324,13 +337,13 @@ public class ExcelRiBaoLYBM4 {
|
|
|
return "";
|
|
|
}
|
|
|
if (todayLocal == 1) {
|
|
|
- todayLoalDesc = "武汉";
|
|
|
+ todayLoalDesc = "武汉市";
|
|
|
} else if (todayLocal == 2) {
|
|
|
- todayLoalDesc = "宜昌";
|
|
|
+ todayLoalDesc = "宜昌市";
|
|
|
} else if (todayLocal == 3) {
|
|
|
- todayLoalDesc = "当阳";
|
|
|
+ todayLoalDesc = "当阳市";
|
|
|
} else if (todayLocal == 4) {
|
|
|
- todayLoalDesc = todayLocalOther;
|
|
|
+ todayLoalDesc = "其它地点_" + todayLocalOther;
|
|
|
}
|
|
|
return todayLoalDesc;
|
|
|
}
|
|
@@ -349,6 +362,7 @@ public class ExcelRiBaoLYBM4 {
|
|
|
}
|
|
|
return isTripDesc;
|
|
|
}
|
|
|
+
|
|
|
@ExcelProperty(value = "出行详细", index = 1)
|
|
|
private String tripDetDesc = "";
|
|
|
|