|
|
|
@ -16,6 +16,7 @@ import com.air.housing.service.HousingEstatesService;
|
|
|
|
|
import com.air.housing.vo.HousingEstatesDetail; |
|
|
|
|
import com.air.housing.vo.HousingEstatesName; |
|
|
|
|
import com.air.land.entity.LandListed; |
|
|
|
|
import com.air.land.mapper.LandListedMapper; |
|
|
|
|
import com.air.land.service.LandListedService; |
|
|
|
|
import com.air.origin.entity.BlocksOrigin; |
|
|
|
|
import com.air.origin.entity.HousesOrigin; |
|
|
|
@ -55,7 +56,7 @@ public class HousingEstatesServiceImpl extends ServiceImpl<HousingEstatesMapper,
|
|
|
|
|
@Autowired |
|
|
|
|
private HousingEstatesMapper housingEstatesMapper; |
|
|
|
|
@Autowired |
|
|
|
|
private LandListedService landListedService; |
|
|
|
|
private LandListedMapper landListedMapper; |
|
|
|
|
@Autowired |
|
|
|
|
private FormatService formatService; |
|
|
|
|
|
|
|
|
@ -109,7 +110,7 @@ public class HousingEstatesServiceImpl extends ServiceImpl<HousingEstatesMapper,
|
|
|
|
|
@Override |
|
|
|
|
public HousingEstatesDetail getHousingEstatesDetail(Long housingEstatesId, Long blockId) { |
|
|
|
|
HousingEstates housingEstates = baseMapper.selectById(housingEstatesId); |
|
|
|
|
LandListed landListed = landListedService.getOne(Wrappers.<LandListed>lambdaQuery().eq(StringUtils.isNotBlank(String.valueOf(housingEstates.getAnnoId())),LandListed::getAnnoId,housingEstates.getAnnoId())); |
|
|
|
|
List<LandListed> landListed = landListedMapper.selectList(Wrappers.<LandListed>lambdaQuery().eq(LandListed::getAnnoId,housingEstates.getAnnoId())); |
|
|
|
|
HousingEstatesDetail detail = new HousingEstatesDetail(); |
|
|
|
|
detail.setHousingEstates(housingEstates); |
|
|
|
|
detail.setLandListed(landListed); |
|
|
|
|