fix(缺陷管理): 评论内容展示问题

This commit is contained in:
song-cc-rock 2024-02-07 13:24:04 +08:00 committed by Craftsman
parent b8065a64d6
commit 2c7cde2d52
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ public class BugCommentService {
public List<BugCommentDTO> getComments(String bugId) { public List<BugCommentDTO> getComments(String bugId) {
BugCommentExample example = new BugCommentExample(); BugCommentExample example = new BugCommentExample();
example.createCriteria().andBugIdEqualTo(bugId); example.createCriteria().andBugIdEqualTo(bugId);
List<BugComment> bugComments = bugCommentMapper.selectByExample(example); List<BugComment> bugComments = bugCommentMapper.selectByExampleWithBLOBs(example);
return wrapperComments(bugComments); return wrapperComments(bugComments);
} }