CRM提交更新

This commit is contained in:
2025-03-13 10:51:39 +08:00
parent 0ce49d1504
commit 950210d681
5 changed files with 4 additions and 5 deletions

View File

@@ -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);
}