| | |
| | | package com.panzhihua.service_community.service.impl; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Comparator; |
| | | import java.util.List; |
| | | import java.util.stream.Collectors; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | import com.google.common.collect.Lists; |
| | | import com.panzhihua.common.model.vos.community.*; |
| | | import com.panzhihua.common.model.vos.community.switchs.CommunitySwitchAllAppletsVO; |
| | | import com.panzhihua.common.model.vos.community.switchs.StreetAllAppletsVO; |
| | | import com.panzhihua.service_community.dao.*; |
| | | import com.panzhihua.service_community.model.dos.ComStreetDO; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.community.ComMngAreaVO; |
| | | import com.panzhihua.common.model.vos.community.ComMngCityVO; |
| | | import com.panzhihua.common.model.vos.community.ComMngDistrictVO; |
| | | import com.panzhihua.common.model.vos.community.ComMngProvinceVO; |
| | | import com.panzhihua.service_community.dao.ComMngCityDAO; |
| | | import com.panzhihua.service_community.dao.ComMngDistrictDAO; |
| | | import com.panzhihua.service_community.dao.ComMngProvinceDAO; |
| | | import com.panzhihua.service_community.dao.ComMngStructAreaDAO; |
| | | import com.panzhihua.service_community.model.dos.ComMngCityDO; |
| | | import com.panzhihua.service_community.model.dos.ComMngDistrictDO; |
| | | import com.panzhihua.service_community.model.dos.ComMngProvinceDO; |
| | |
| | | private ComMngDistrictDAO comMngDistrictDAO; |
| | | |
| | | @Resource |
| | | private ComMngStructAreaDAO comMngStructAreaDAO; |
| | | private ComStreetDAO comStreetDAO; |
| | | |
| | | |
| | | @Resource |
| | | private ComActDAO comActDAO; |
| | | |
| | | @Override |
| | | public R getProvince() { |
| | |
| | | |
| | | @Override |
| | | public R getCityTreeByProvinceCode(Integer provinceAdcode,String areaCode) { |
| | | //省份 |
| | | List<ComMngProvinceDO> provinceDOS = comMngProvinceDAO.selectList( |
| | | new QueryWrapper<ComMngProvinceDO>().lambda().eq(ComMngProvinceDO::getProvinceAdcode, provinceAdcode)); |
| | | //市 |
| | | List<ComMngCityDO> cityDOS = comMngCityDAO.selectList(new QueryWrapper<>()); |
| | | |
| | | List<ComMngDistrictDO> districtDOS = comMngDistrictDAO.selectList(new QueryWrapper<>()); |
| | | List<ComMngAreaVO> vos = new ArrayList<>(); |
| | | provinceDOS.forEach(p -> { |
| | |
| | | } |
| | | |
| | | @Override |
| | | public R getCityTreeByCode(Integer provinceAdcode, String areaCode) { |
| | | public R getCityTreeByCode(Integer provinceAdcode, String areaCode,String appId) { |
| | | //四川省 |
| | | List<ComMngProvinceDO> provinceDOS = comMngProvinceDAO.selectList( |
| | | new QueryWrapper<ComMngProvinceDO>().lambda().eq(ComMngProvinceDO::getProvinceAdcode, provinceAdcode)); |
| | |
| | | BeanUtils.copyProperties(d, districtVo); |
| | | cityVo.getChildren().add(districtVo); |
| | | vos.add(districtVo); |
| | | |
| | | LambdaQueryWrapper<ComStreetDO> param = new QueryWrapper<ComStreetDO>().lambda(); |
| | | ComStreetVO comStreetVO=new ComStreetVO(); |
| | | comStreetVO.setAreaCode(d.getDistrictAdcode()); |
| | | if (comStreetVO.getAreaCode() != null) { |
| | | param.eq(ComStreetDO::getAreaCode, comStreetVO.getAreaCode()) |
| | | .eq(ComStreetDO::getAppId, appId); |
| | | } |
| | | List<ComStreetDO> comStreetDOS = comStreetDAO.selectList(param); |
| | | comStreetDOS.forEach(dos -> |
| | | { |
| | | ComMngAreaVO csd = new ComMngAreaVO(0, dos.getName()); |
| | | BeanUtils.copyProperties(dos, csd); |
| | | districtVo.getChildren().add(csd); |
| | | |
| | | // 查询街道下社区列表 |
| | | List<CommunitySwitchAllAppletsVO> communityList = comActDAO.getCommunityListByStreetId(dos.getStreetId()); |
| | | |
| | | communityList.forEach(commItem -> |
| | | { |
| | | ComMngAreaVO cssd = new ComMngAreaVO(0, commItem.getName(),commItem.getCommunityId()+""); |
| | | BeanUtils.copyProperties(commItem, cssd); |
| | | csd.getChildren().add(cssd); |
| | | }); |
| | | |
| | | |
| | | }); |
| | | |
| | | |
| | | }); |
| | | }); |
| | | // vos.add(pvo); |
| | | }); |
| | | return R.ok(vos); |
| | | } |