Commit f6bf207b by “Kongxiangkun”

评论,收藏,点赞 埋点面板修改

parent da39c955
......@@ -28,6 +28,7 @@ import com.yizhi.system.application.vo.domain.Dictionary;
import com.yizhi.training.application.feign.LeaveWordClient;
import com.yizhi.training.application.vo.domain.AuthzUserGroupVo;
import com.yizhi.util.application.date.DateUtil;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.BeanUtils;
......@@ -418,10 +419,12 @@ public class EventTrackServiceImpl extends ServiceImpl<EventTrackMapper, EventTr
// }
// }
List<Long> subIdList = null;
if(StringUtils.isNotBlank(parentId)) {
List<DataClassification> classificationList = dataClassificationService.getSon(Long.valueOf(parentId));
if(CollectionUtil.isNotEmpty(classificationList)){
if (CollectionUtil.isNotEmpty(classificationList)) {
subIdList = classificationList.stream().map(DataClassification::getId).collect(Collectors.toList());
}
}
List<EventTrackTypeNumVo> eventTrackTypeNumVoList = null;
//判断是否获取阅读量
// if(types.get(0).equals(6)){
......
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