|
@@ -907,6 +907,12 @@ public class TaBuildingServiceImpl extends ServiceImpl<TaBuildingMapper, TaBuild
|
907
|
907
|
//
|
908
|
908
|
// IPage<TaBuilding> result = taBuildingMapper.selectPage(page, buildingQueryWrapper);
|
909
|
909
|
|
|
910
|
+ List<String> buildingAreaLisr = new ArrayList<>();
|
|
911
|
+ if (!StringUtils.isEmpty(buildingArea)){
|
|
912
|
+ String[] split = buildingArea.split(",");
|
|
913
|
+ buildingAreaLisr = Arrays.asList(split);
|
|
914
|
+ }
|
|
915
|
+
|
910
|
916
|
IPage<TaBuilding> result = taBuildingMapper.selectBuildingPage(page,
|
911
|
917
|
name,
|
912
|
918
|
cityId,
|
|
@@ -922,7 +928,8 @@ public class TaBuildingServiceImpl extends ServiceImpl<TaBuildingMapper, TaBuild
|
922
|
928
|
isRecentOpening,
|
923
|
929
|
isCommerce,
|
924
|
930
|
marketStatus,
|
925
|
|
- orderBy);
|
|
931
|
+ orderBy,
|
|
932
|
+ buildingAreaLisr);
|
926
|
933
|
|
927
|
934
|
List<TaBuilding> buildingList = result.getRecords();
|
928
|
935
|
if (CollectionUtils.isNotEmpty(buildingList)) {
|