springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngStructAreaServiceImpl.java
@@ -165,5 +165,22 @@ return R.ok(comMngStructAreaVOS); } /** * 小区详情 * * @param areaId 小区id * @return 小区信息 */ @Override public R detailArea(Long areaId) { ComMngStructAreaDO comMngStructAreaDO = comMngStructAreaDAO.selectById(areaId); if (ObjectUtils.isEmpty(comMngStructAreaDO)) { return R.fail("小区不存在"); } ComMngStructAreaVO comMngStructAreaVO=new ComMngStructAreaVO(); BeanUtils.copyProperties(comMngStructAreaDO,comMngStructAreaVO); return R.ok(comMngStructAreaVO); } }