Commit e13abad7 by 王祖波

Merge branch 'feature-recommend' into 'developer'

互动记录转换扩展信息去除1类型判断

See merge request !2719
parents c4fdd300 3e282dd1
......@@ -97,11 +97,6 @@ public class InteractRecordBuilder {
log.info("互动记录扩展信息为空 {}", interactRecord.getId());
return null;
}
if (MaterialInteractRecordEventType.VISIT_MATERIAL.getCode().equals(interactRecord.getEventType())) {
// 浏览素材事件无扩展信息
log.info("浏览素材事件无扩展信息 {}", interactRecord.getId());
return null;
}
InteractRecordExtendInfoBO extendInfo = JSON.parseObject(interactRecord.getExtendInfo(), new TypeReference<InteractRecordExtendInfoBO>() {
});
if (MaterialInteractRecordEventType.VISIT_PRODUCT.getCode().equals(interactRecord.getEventType())
......
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