fix(缺陷管理): 评论内容展示问题
This commit is contained in:
parent
b8065a64d6
commit
2c7cde2d52
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue