diff --git a/fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/follow/strategy/AbstractFollowStrategy.java b/fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/follow/strategy/AbstractFollowStrategy.java index 8f25c49..5743c19 100644 --- a/fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/follow/strategy/AbstractFollowStrategy.java +++ b/fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/follow/strategy/AbstractFollowStrategy.java @@ -963,7 +963,7 @@ public abstract class AbstractFollowStrategy implements FollowStrategy { private boolean verifyClue(CustomerCluePool cluePool) { Long refererId = cluePool.getRefererId(); - Customer customer = customerService.queryById(refererId); + Customer customer = customerService.getById(refererId); boolean enabled = Boolean.TRUE.equals(customer.getYn()); if (!enabled) { customerCluePoolService.removeById(cluePool.getId());