Commit 4761a0b4 by 段启岩

修复博客删除时删掉所有ext的bug

parent 51984bc6
...@@ -143,7 +143,7 @@ public class BlogServiceImpl extends ServiceImpl<BlogMapper, Blog> implements IB ...@@ -143,7 +143,7 @@ public class BlogServiceImpl extends ServiceImpl<BlogMapper, Blog> implements IB
//3.删除博客内容 //3.删除博客内容
QueryWrapper queryWrapperExt = new QueryWrapper(); QueryWrapper queryWrapperExt = new QueryWrapper();
queryWrapperComment.eq("blog_id", blogId); queryWrapperExt.eq("blog_id", blogId);
blogExtService.remove(queryWrapperExt); blogExtService.remove(queryWrapperExt);
//4.删除博客标签 //4.删除博客标签
......
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