Commit 1422afbe by 阳浪

题库管理优化

parent 8bf17683
......@@ -163,7 +163,7 @@ public class TpCommentController {
AccountVO accountVO = accountClient.findById(listCommentVo.getAccountId());
fullName = accountVO.getFullName();
name = accountVO.getName();
listCommentVo.setCommentator(accountVO.getRemarkFirst());
listCommentVo.setCommentator(name);
listCommentVo.setReplyName("--");
listCommentVo.setCommentatorName(null == fullName || "" == fullName ? name : fullName);
Boolean hasThumbsUp = tpCommentThumbsUpService.judgeHasThumbsUp(listCommentVo.getId());
......@@ -253,7 +253,7 @@ public class TpCommentController {
AccountVO accountVO = accountClient.findById(listCommentVo.getAccountId());
fullName = accountVO.getFullName();
name = accountVO.getName();
listCommentVo.setCommentator(accountVO.getRemarkFirst());
listCommentVo.setCommentator(name);
listCommentVo.setReplyName("--");
listCommentVo.setCommentatorName(null == fullName || "" == fullName ? name : fullName);
Boolean hasThumbsUp = tpCommentThumbsUpService.judgeHasThumbsUp(listCommentVo.getId());
......
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