From e442ad67e45203da27575acc17e4f8080c65655a Mon Sep 17 00:00:00 2001 From: Kurisu Date: Thu, 5 Jan 2023 18:29:21 +0800 Subject: [PATCH] fix(*): 处理测试数据bug修复 --- fw-shirasawa-service/src/main/java/cn/fw/shirasawa/service/bus/follow/strategy/AbstractFollowStrategy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fw-shirasawa-service/src/main/java/cn/fw/shirasawa/service/bus/follow/strategy/AbstractFollowStrategy.java b/fw-shirasawa-service/src/main/java/cn/fw/shirasawa/service/bus/follow/strategy/AbstractFollowStrategy.java index 0cc7218..6a1c561 100644 --- a/fw-shirasawa-service/src/main/java/cn/fw/shirasawa/service/bus/follow/strategy/AbstractFollowStrategy.java +++ b/fw-shirasawa-service/src/main/java/cn/fw/shirasawa/service/bus/follow/strategy/AbstractFollowStrategy.java @@ -303,7 +303,7 @@ public abstract class AbstractFollowStrategy implements FollowStrategy { @Override public List queryHistoryByRecord(FollowRecord record) { List list = new ArrayList<>(); - if (BusinessTypeEnum.AS.equals(record.getBizType()) && !FollowTypeEnum.AC.equals(record.getType())) { + if (BusinessTypeEnum.AS.equals(record.getBizType()) && !FollowTypeEnum.AC.equals(record.getType()) && !FollowTypeEnum.AF.equals(record.getType())) { List taskList = followTaskService.list(Wrappers.lambdaQuery() .eq(FollowTask::getType, record.getType()) .eq(FollowTask::getBizId, record.getBizId()) -- libgit2 0.22.2