|
@@ -148,7 +148,7 @@ public class TaBuildingServiceImpl extends ServiceImpl<TaBuildingMapper, TaBuild
|
148
|
148
|
}
|
149
|
149
|
|
150
|
150
|
@Override
|
151
|
|
- public ResponseBean buildingAllSelectId(String id,String personId) {
|
|
151
|
+ public ResponseBean buildingAllSelectId(String id,String personId, Integer orgId) {
|
152
|
152
|
// 查询基础信息
|
153
|
153
|
QueryWrapper<TaBuilding> buildingtWrapper = new QueryWrapper<>();
|
154
|
154
|
buildingtWrapper.lambda().gt(TaBuilding::getStatus,-1);
|
|
@@ -528,7 +528,7 @@ public class TaBuildingServiceImpl extends ServiceImpl<TaBuildingMapper, TaBuild
|
528
|
528
|
IPage<TaShare> taShareList = taShareMapper.selectPage(pg, taShareQueryWrapper);
|
529
|
529
|
build.setShareList(taShareList);
|
530
|
530
|
|
531
|
|
- build.setConsultants(taPersonMapper.selectBuildingConsultants(build.getBuildingId(), CommConstant.PERSON_REALTY_CONSULTANT, CommConstant.STATUS_NORMAL));
|
|
531
|
+ build.setConsultants(taPersonMapper.selectBuildingConsultants(build.getBuildingId(), CommConstant.PERSON_REALTY_CONSULTANT, CommConstant.STATUS_NORMAL, build.getOrgId()));
|
532
|
532
|
}
|
533
|
533
|
|
534
|
534
|
@Override
|