如果是山东的非耕地火点,就考虑入库

This commit is contained in:
liuchengqian 2022-10-24 14:12:44 +08:00
parent 3190d71e8a
commit aa4130ad7d

View File

@ -126,8 +126,9 @@ public class FirePointServiceImpl implements FirePointService {
return false;
}
if (firePointEntity.getCountyCode().startsWith("37")) {
//如果是山东的点就入库
if (isSwitchStateOpen()) {
//如果是山东的非耕地火点就考虑入库
if (!"耕地".equals(firePointEntity.getLandType())) {
//如果开关已打开就只将未审核的火点添加到山东临时表
log.info("-------发现新山东火点");
ShanDongFirePointEntity shanDongFirePointByFirePoint = getShanDongFirePointByFirePoint(firePointEntity);
@ -140,17 +141,14 @@ public class FirePointServiceImpl implements FirePointService {
e.printStackTrace();
}
return true;
} else {
return false;
}
}
} else {
log.info("-------发现新火点");
firePointDao.save(firePointEntity);
return true;
}
// log.info("-------发现新火点");
// firePointDao.save(firePointEntity);
// return true;
return false;
}
/**