|
@ -835,6 +835,23 @@ public class IcNeighborHoodServiceImpl extends BaseServiceImpl<IcNeighborHoodDao |
|
|
result.setGridName(gridInfoCache.getGridName()); |
|
|
result.setGridName(gridInfoCache.getGridName()); |
|
|
} |
|
|
} |
|
|
result.setPropertyList(propertyManagementDao.selectPropertyNameList(neighborhoodId)); |
|
|
result.setPropertyList(propertyManagementDao.selectPropertyNameList(neighborhoodId)); |
|
|
|
|
|
|
|
|
|
|
|
if (StringUtils.isNotBlank(result.getOpenType())){ |
|
|
|
|
|
if (result.getOpenType().equals("1")){ |
|
|
|
|
|
result.setOpenTypeName("封闭式"); |
|
|
|
|
|
} |
|
|
|
|
|
if (result.getOpenType().equals("2")){ |
|
|
|
|
|
result.setOpenTypeName("开放式"); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
if (StringUtils.isNotBlank(result.getViliageType())){ |
|
|
|
|
|
if (result.getViliageType().equals("1")){ |
|
|
|
|
|
result.setViliageTypeName("住宅小区"); |
|
|
|
|
|
} |
|
|
|
|
|
if (result.getViliageType().equals("2")){ |
|
|
|
|
|
result.setViliageTypeName("自然村"); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
return new Result<IcNeighborHoodDetailDTO>().ok(result); |
|
|
return new Result<IcNeighborHoodDetailDTO>().ok(result); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|