|
|
|
@ -112,7 +112,11 @@ public class LandListedServiceImpl extends ServiceImpl<LandListedMapper, LandLis
|
|
|
|
|
@Override |
|
|
|
|
public List<LandDto> appletsLandListed(Page page, LandVo landVo) { |
|
|
|
|
landVo.setNowDate(cn.hutool.core.date.DateUtil.formatDate(new Date())); |
|
|
|
|
return baseMapper.appletsLandListed(page,landVo); |
|
|
|
|
List<LandDto> landDtos = baseMapper.appletsLandListed(page, landVo); |
|
|
|
|
landDtos.forEach(landDto -> { |
|
|
|
|
landDto.setIsToBeListed("0"); |
|
|
|
|
}); |
|
|
|
|
return landDtos; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|