|
|
|
@@ -517,8 +517,9 @@ public class InvestBizServiceImpl implements InvestBizService { |
|
|
|
LambdaQueryWrapper<InvestTaskEntity> taskQueryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
InvestPageResult<InvestTaskVo> investPage = new InvestPageResult<>(); |
|
|
|
taskQueryWrapper.apply(StringUtils.isNotBlank(taskParams.getOwner()), "`owner` REGEXP {0}", taskParams.getOwner()); |
|
|
|
taskQueryWrapper.apply(Objects.nonNull(params.getBusinessId()), "`content` REGEXP {0}", |
|
|
|
buildBusinessQuery(params)); |
|
|
|
if (Objects.nonNull(params.getBusinessId())) { |
|
|
|
taskQueryWrapper.apply("`content` REGEXP {0}", buildBusinessQuery(params)); |
|
|
|
} |
|
|
|
taskParams.setOwner(null); |
|
|
|
taskQueryWrapper.setEntity(taskParams); |
|
|
|
|
|
|
|
|