|
@@ -484,17 +484,17 @@ public class TaRecommendCustomerServiceImpl extends ServiceImpl<TaRecommendCusto
|
484
|
484
|
}
|
485
|
485
|
|
486
|
486
|
@Override
|
487
|
|
- public IPage getCustomerList(Integer status, int pageNumber, int pageSize, String building, String name, String tel, String consultName, String consultTel, String entryType, String verifyStatus, Integer sex, String customerType, Integer orgId, List<TaPersonBuilding> taPersonBuildingList, String sceneType, String startCreateDate, String endCreateDate) {
|
|
487
|
+ public IPage getCustomerList(Integer status, int pageNumber, int pageSize, String building, String name, String tel, String consultName, String consultTel, String entryType, String verifyStatus, Integer sex, String customerType, Integer orgId, List<TaPersonBuilding> taPersonBuildingList, String sceneType, String startCreateDate, String endCreateDate, String sharePersonName) {
|
488
|
488
|
|
489
|
489
|
if (CommConstant.CUTOMER_TYPE_PUBLIC.equals(customerType)) {
|
490
|
490
|
// 公客
|
491
|
491
|
IPage<TaPerson> page = new Page<>(pageNumber, pageSize);
|
492
|
492
|
// 公客就不用 buildingId 进行查询
|
493
|
|
- return taRecommendCustomerMapper.getPublicCustomerList(page, name, tel, entryType, verifyStatus, sex, orgId, consultTel, sceneType, taPersonBuildingList, building, startCreateDate, endCreateDate);
|
|
493
|
+ return taRecommendCustomerMapper.getPublicCustomerList(page, name, tel, entryType, verifyStatus, sex, orgId, consultTel, sceneType, taPersonBuildingList, building, startCreateDate, endCreateDate, sharePersonName);
|
494
|
494
|
} else {
|
495
|
495
|
// 私客
|
496
|
496
|
IPage<TaRecommendCustomer> page = new Page<>(pageNumber, pageSize);
|
497
|
|
- return taRecommendCustomerMapper.getCustomerList(page, building, name, tel, consultName, consultTel, entryType, verifyStatus, sex, orgId, status, taPersonBuildingList, sceneType, startCreateDate, endCreateDate);
|
|
497
|
+ return taRecommendCustomerMapper.getCustomerList(page, building, name, tel, consultName, consultTel, entryType, verifyStatus, sex, orgId, status, taPersonBuildingList, sceneType, startCreateDate, endCreateDate, sharePersonName);
|
498
|
498
|
}
|
499
|
499
|
|
500
|
500
|
}
|