Commit d63ae1fd by 吴博

feat: [1003836] 落地页补充书籍信息

parent 47f27dfa
...@@ -5917,6 +5917,10 @@ public class BookGroupBizImpl implements BookGroupBiz { ...@@ -5917,6 +5917,10 @@ public class BookGroupBizImpl implements BookGroupBiz {
} }
} }
Map<String, Object> map = this.getBookBaseInfo4Applet(adviserId, channelId, bookId); Map<String, Object> map = this.getBookBaseInfo4Applet(adviserId, channelId, bookId);
Map<Long, AdviserBaseInfoDto> adviserInfoDtoMap = adviserConsr.getAdviserId2AdviserInfoDtoMap(Lists.newArrayList(adviserId));
if (MapUtils.isNotEmpty(adviserInfoDtoMap) && null != adviserInfoDtoMap.get(adviserId)) {
map.put("agentName", adviserInfoDtoMap.get(adviserId).getAgentName());
}
map.put("bookId", bookId); map.put("bookId", bookId);
map.put("adviserId", adviserId); map.put("adviserId", adviserId);
map.put("channelId", channelId); map.put("channelId", channelId);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment