|
|
|
@ -63,9 +63,9 @@ public class LandListedServiceImpl extends ServiceImpl<LandListedMapper, LandLis
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R<List<LandListedStatisticsDto>> appletsCalendar(String date, String city) { |
|
|
|
|
List<LandListedStatisticsDto> annoDateList = baseMapper.appletsCalendarToAnnoDate(date, city); |
|
|
|
|
List<LandListedStatisticsDto> auctionDateList = baseMapper.appletsCalendarToAuctionDate(date, city); |
|
|
|
|
public R<List<LandListedStatisticsDto>> appletsCalendar(String date, String city,String canton) { |
|
|
|
|
List<LandListedStatisticsDto> annoDateList = baseMapper.appletsCalendarToAnnoDate(date, city,canton); |
|
|
|
|
List<LandListedStatisticsDto> auctionDateList = baseMapper.appletsCalendarToAuctionDate(date, city,canton); |
|
|
|
|
if (CollectionUtil.isEmpty(annoDateList)){ |
|
|
|
|
return R.ok(auctionDateList); |
|
|
|
|
} |
|
|
|
|