Commit 41ef1b102f2c921e0985b01fcff48db45f2299d7

Authored by 张志伟
1 parent 96e03a33

:rocket: 优化跟进池

fw-shirasawa-server/src/main/java/cn/fw/shirasawa/server/controller/task/FollowRecordTask.java
... ... @@ -8,7 +8,6 @@ import cn.fw.shirasawa.domain.enums.TaskStateEnum;
8 8 import cn.fw.shirasawa.rpc.backlog.TodoRpcService;
9 9 import cn.fw.shirasawa.rpc.backlog.dto.BackLogItemDTO;
10 10 import cn.fw.shirasawa.service.bus.follow.FollowBizService;
11   -import cn.fw.shirasawa.service.data.CluePoolService;
12 11 import cn.fw.shirasawa.service.data.FollowRecordService;
13 12 import cn.fw.shirasawa.service.data.FollowTaskService;
14 13 import com.alibaba.fastjson.JSONObject;
... ... @@ -38,19 +37,16 @@ public class FollowRecordTask {
38 37 private final FollowBizService followBizService;
39 38 private final TodoRpcService todoRpcService;
40 39 private final FollowTaskService followTaskService;
41   - private final CluePoolService cluePoolService;
42 40  
43 41 @Autowired
44 42 public FollowRecordTask(final FollowRecordService followRecordService,
45 43 final FollowBizService followBizService,
46 44 final TodoRpcService todoRpcService,
47   - final FollowTaskService followTaskService,
48   - final CluePoolService cluePoolService) {
  45 + final FollowTaskService followTaskService) {
49 46 this.followRecordService = followRecordService;
50 47 this.followBizService = followBizService;
51 48 this.todoRpcService = todoRpcService;
52 49 this.followTaskService = followTaskService;
53   - this.cluePoolService = cluePoolService;
54 50 }
55 51  
56 52 /**
... ...