diff --git a/mallinkService/src/main/java/com/iformall/service/invest/impl/InvestBizServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/invest/impl/InvestBizServiceImpl.java index a0c33044e..fb36dc3bc 100644 --- a/mallinkService/src/main/java/com/iformall/service/invest/impl/InvestBizServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/invest/impl/InvestBizServiceImpl.java @@ -516,6 +516,8 @@ public class InvestBizServiceImpl implements InvestBizService { LambdaQueryWrapper taskQueryWrapper = new LambdaQueryWrapper<>(); InvestPageResult investPage = new InvestPageResult<>(); 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); taskQueryWrapper.setEntity(taskParams); @@ -590,7 +592,7 @@ public class InvestBizServiceImpl implements InvestBizService { shop = new WxShop(); shop.setShopNumber(params.getShopNumber()); shop.setStatus(params.getShopStatus()); - shop.setBusinessId(params.getBusinessId()); + //shop.setBusinessId(params.getBusinessId()); } InvestTaskDto taskDto = new InvestTaskDto();