diff --git a/casic-sluicewell/src/main/java/com/casic/missiles/modular/system/service/impl/BusWellInfoServiceImpl.java b/casic-sluicewell/src/main/java/com/casic/missiles/modular/system/service/impl/BusWellInfoServiceImpl.java index b8bdbc5..ccaee69 100644 --- a/casic-sluicewell/src/main/java/com/casic/missiles/modular/system/service/impl/BusWellInfoServiceImpl.java +++ b/casic-sluicewell/src/main/java/com/casic/missiles/modular/system/service/impl/BusWellInfoServiceImpl.java @@ -63,7 +63,7 @@ wellInfo.setResponsibleDeptName(service.getDeptService().getDeptName(wellInfo.getResponsibleDept())); wellInfo.setBfztName(dictService.getDictNameByCode("bfZt", wellInfo.getBfzt())); wellInfo.setWellTypeName(dictService.getDictNameByCode(BusWellConst.SLUICEWELL_TYPE, wellInfo.getWellType())); - wellInfo.setQu(this.getAreaPid(Long.valueOf(wellInfo.getArea()))); + wellInfo.setQu(StrUtil.isEmpty(wellInfo.getArea())?"":this.getAreaPid(Long.valueOf(wellInfo.getArea()))); return wellInfo; }