|
@@ -89,6 +89,16 @@ public class SweepCodeService {
|
|
|
if (sysUptownHouses != null && sysUptownHouses.size() > 0) {
|
|
|
String tripDet;
|
|
|
for (ExcelRiBaoLYBM4 excelRiBaoLYBM4 : sysUptownHouses) {
|
|
|
+ if (excelRiBaoLYBM4.getIsContact() == 0) {
|
|
|
+ excelRiBaoLYBM4.setIsContactDesc("否");
|
|
|
+ } else if (excelRiBaoLYBM4.getIsContact() == 1) {
|
|
|
+ excelRiBaoLYBM4.setIsContactDesc("是");
|
|
|
+ }
|
|
|
+ if (excelRiBaoLYBM4.getIsSuspected() == 0) {
|
|
|
+ excelRiBaoLYBM4.setIsSuspectedDesc("否");
|
|
|
+ } else if (excelRiBaoLYBM4.getIsSuspected() == 1) {
|
|
|
+ excelRiBaoLYBM4.setIsSuspectedDesc("是");
|
|
|
+ }
|
|
|
tripDet = "";
|
|
|
//出行详细
|
|
|
List<MsTripDet> listDet = msSuspectedMapper.selectTripSuspected(excelRiBaoLYBM4.getTripId());
|
|
@@ -117,6 +127,11 @@ public class SweepCodeService {
|
|
|
} else if (excelRiBaoLYBM4.getIsContact() == 1) {
|
|
|
excelRiBaoLYBM4.setIsContactDesc("是");
|
|
|
}
|
|
|
+ if (excelRiBaoLYBM4.getIsSuspected() == 0) {
|
|
|
+ excelRiBaoLYBM4.setIsSuspectedDesc("否");
|
|
|
+ } else if (excelRiBaoLYBM4.getIsSuspected() == 1) {
|
|
|
+ excelRiBaoLYBM4.setIsSuspectedDesc("是");
|
|
|
+ }
|
|
|
tripDet = "";
|
|
|
//出行详细
|
|
|
List<MsTripDet> listDet = msSuspectedMapper.selectTripSuspected(excelRiBaoLYBM4.getTripId());
|
|
@@ -175,6 +190,16 @@ public class SweepCodeService {
|
|
|
if (sysUptownHouses != null && sysUptownHouses.size() > 0) {
|
|
|
String tripDet;
|
|
|
for (ExcelRiBaoHCBM4 excelRiBaoLYBM4 : sysUptownHouses) {
|
|
|
+ if (excelRiBaoLYBM4.getIsContact() == 0) {
|
|
|
+ excelRiBaoLYBM4.setIsContactDesc("否");
|
|
|
+ } else if (excelRiBaoLYBM4.getIsContact() == 1) {
|
|
|
+ excelRiBaoLYBM4.setIsContactDesc("是");
|
|
|
+ }
|
|
|
+ if (excelRiBaoLYBM4.getIsSuspected() == 0) {
|
|
|
+ excelRiBaoLYBM4.setIsSuspectedDesc("否");
|
|
|
+ } else if (excelRiBaoLYBM4.getIsSuspected() == 1) {
|
|
|
+ excelRiBaoLYBM4.setIsSuspectedDesc("是");
|
|
|
+ }
|
|
|
tripDet = "";
|
|
|
//出行详细
|
|
|
List<MsTripDet> listDet = msSuspectedMapper.selectTripSuspected(excelRiBaoLYBM4.getTripId());
|