提交 65c0dcbd authored 作者: renjianyu's avatar renjianyu

--no commit message

上级 c23133e1
......@@ -191,7 +191,10 @@ public class FgCommentServiceImpl extends BaseServiceImpl<Comment, String> imple
@Override
public FgCommentListVo getById(String oid) {
FgCommentListVo vo = new FgCommentListVo();
Comment c = super.notNull(oid);
Comment c = mapper.selectByPrimaryKey(oid);
if(c == null){
return null;
}
BeanUtils.copyProperties(c, vo);
// 设置回复数量
String userId = null;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论