Commit f3b07d757472aa1ceb759cbff09cfd8aa5b4c8b7

Authored by 张志伟
1 parent a0429fb2

:construction: bug修复

fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/follow/strategy/impl/FMFollowStrategy.java
@@ -74,6 +74,7 @@ public class FMFollowStrategy extends AbstractFollowStrategy { @@ -74,6 +74,7 @@ public class FMFollowStrategy extends AbstractFollowStrategy {
74 FollowTask followTask = followTaskService.getById(followRecord.getTaskId()); 74 FollowTask followTask = followTaskService.getById(followRecord.getTaskId());
75 BV.notNull(followTask, "跟进信息不存在"); 75 BV.notNull(followTask, "跟进信息不存在");
76 FMDetailVO vo = assemble(followRecord.getCustomerId()); 76 FMDetailVO vo = assemble(followRecord.getCustomerId());
  77 + vo.setId(followRecord.getId());
77 vo.setTaskId(followRecord.getTaskId()); 78 vo.setTaskId(followRecord.getTaskId());
78 vo.setFMExpiration(followTask.getDeadline()); 79 vo.setFMExpiration(followTask.getDeadline());
79 return vo; 80 return vo;