| @@ -516,6 +516,8 @@ public class InvestBizServiceImpl implements InvestBizService { | |||||
| LambdaQueryWrapper<InvestTaskEntity> taskQueryWrapper = new LambdaQueryWrapper<>(); | LambdaQueryWrapper<InvestTaskEntity> taskQueryWrapper = new LambdaQueryWrapper<>(); | ||||
| InvestPageResult<InvestTaskVo> investPage = new InvestPageResult<>(); | InvestPageResult<InvestTaskVo> investPage = new InvestPageResult<>(); | ||||
| taskQueryWrapper.apply(StringUtils.isNotBlank(taskParams.getOwner()), "`owner` REGEXP {0}", taskParams.getOwner()); | taskQueryWrapper.apply(StringUtils.isNotBlank(taskParams.getOwner()), "`owner` REGEXP {0}", taskParams.getOwner()); | ||||
| taskQueryWrapper.apply(Objects.nonNull(params.getBusinessId()), "`content` REGEXP {0}", | |||||
| String.format("\"businessId\": %d", params.getBusinessId())); | |||||
| taskParams.setOwner(null); | taskParams.setOwner(null); | ||||
| taskQueryWrapper.setEntity(taskParams); | taskQueryWrapper.setEntity(taskParams); | ||||
| @@ -590,7 +592,7 @@ public class InvestBizServiceImpl implements InvestBizService { | |||||
| shop = new WxShop(); | shop = new WxShop(); | ||||
| shop.setShopNumber(params.getShopNumber()); | shop.setShopNumber(params.getShopNumber()); | ||||
| shop.setStatus(params.getShopStatus()); | shop.setStatus(params.getShopStatus()); | ||||
| shop.setBusinessId(params.getBusinessId()); | |||||
| //shop.setBusinessId(params.getBusinessId()); | |||||
| } | } | ||||
| InvestTaskDto taskDto = new InvestTaskDto(); | InvestTaskDto taskDto = new InvestTaskDto(); | ||||