CRM提交更新
This commit is contained in:
@@ -117,7 +117,6 @@ public class OaCustomerServiceImpl implements IOaCustomerService {
|
||||
@Override
|
||||
public TableDataInfo<OaCustomerVo> queryPageListToUser(OaCustomerBo bo, PageQuery pageQuery) {
|
||||
LambdaQueryWrapper<OaCustomer> lqw = buildQueryWrapper(bo);
|
||||
lqw.eq(OaCustomer::getOwnerUserId, LoginHelper.getUserId());
|
||||
Page<OaCustomerVo> result = baseMapper.selectVoPageToUser(pageQuery.build(), lqw);
|
||||
return TableDataInfo.build(result);
|
||||
}
|
||||
@@ -125,7 +124,6 @@ public class OaCustomerServiceImpl implements IOaCustomerService {
|
||||
@Override
|
||||
public TableDataInfo<OaCustomerVo> queryPageListToSea(OaCustomerBo bo, PageQuery pageQuery) {
|
||||
LambdaQueryWrapper<OaCustomer> lqw = buildQueryWrapper(bo);
|
||||
lqw.isNull(OaCustomer::getOwnerUserId);
|
||||
Page<OaCustomerVo> result = baseMapper.selectVoPageToUser(pageQuery.build(), lqw);
|
||||
return TableDataInfo.build(result);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user