insert into forest_article_content (id_article,article_content,article_content_html,created_time,updated_time)
values (#{idArticle},#{articleContent},#{articleContentHtml},sysdate(),sysdate())
update forest_article_content set article_content = #{articleContent},article_content_html = #{articleContentHtml},updated_time = sysdate() where id_article = #{idArticle}
update forest_article set article_view_count = #{articleViewCount} where id = #{id}
update forest_article set article_tags = #{tags} where id = #{idArticle}
update forest_article set article_link = #{articleLink}, article_permalink = #{articlePermalink}, article_preview_content = #{articlePreviewContent} where id = #{idArticle}
update forest_article set article_perfect = #{articlePerfect} where id = #{idArticle}
delete from forest_tag_article where id_article = #{id}
delete from forest_tag_article where id = #{idArticleTag}
delete from forest_portfolio_article where id_article = #{id}