Compare commits

..

No commits in common. "d5ff1265d7ca84b48d418bdd7bce44539f73cf8d" and "17edba85e5e22232f7b16f983054d7e4ca08969c" have entirely different histories.

1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.mcwl.common.core.domain.entity.SysUser;
import com.mcwl.common.utils.SecurityUtils;
import com.mcwl.common.utils.StringUtils;
import com.mcwl.resource.domain.ModelImageComment;
import com.mcwl.resource.domain.SysAdvice;
import com.mcwl.resource.domain.WorkFlowComment;
import com.mcwl.resource.domain.WorkFlowCommentLike;
@ -274,7 +275,7 @@ public class WorkFlowCommentServiceImpl extends ServiceImpl<WorkFlowCommentMappe
WorkFlowCommentVo vo = new WorkFlowCommentVo();
vo.setUserId(comment.getUserId());
vo.setUserName(user.getNickName());
vo.setUserName(user.getUserName());
vo.setUserAvatar(user.getAvatar());
vo.setCommentId(comment.getId());
vo.setContent(comment.getContent());