Compare commits
No commits in common. "d5ff1265d7ca84b48d418bdd7bce44539f73cf8d" and "17edba85e5e22232f7b16f983054d7e4ca08969c" have entirely different histories.
d5ff1265d7
...
17edba85e5
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue