| | |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | import com.google.common.collect.Lists; |
| | | import com.panzhihua.common.model.vos.community.*; |
| | | 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; |
| | | |
| | | @Override |
| | | public R getProvince() { |
| | |
| | | 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()); |
| | | } |
| | | List<ComStreetDO> comStreetDOS = comStreetDAO.selectList(param); |
| | | comStreetDOS.forEach(dos -> |
| | | { |
| | | ComMngAreaVO csd = new ComMngAreaVO(0, dos.getName(),dos.getStreetId()+""); |
| | | BeanUtils.copyProperties(dos, csd); |
| | | districtVo.getChildren().add(csd); |
| | | }); |
| | | |
| | | |
| | | }); |
| | | }); |
| | | // vos.add(pvo); |
| | | }); |
| | | return R.ok(vos); |
| | | } |