select article_id, cate_id, title, image_url, is_tui, is_news, contents, views, sort, create_time, update_time, publish_time from fs_article
insert into fs_article
cate_id,
title,
image_url,
is_tui,
is_news,
contents,
views,
sort,
create_time,
update_time,
publish_time,
#{cateId},
#{title},
#{imageUrl},
#{isTui},
#{isNews},
#{contents},
#{views},
#{sort},
#{createTime},
#{updateTime},
#{publishTime},
update fs_article
cate_id = #{cateId},
title = #{title},
image_url = #{imageUrl},
is_tui = #{isTui},
is_news = #{isNews},
contents = #{contents},
views = #{views},
sort = #{sort},
create_time = #{createTime},
update_time = #{updateTime},
publish_time = #{publishTime},
where article_id = #{articleId}
delete from fs_article where article_id = #{articleId}
delete from fs_article where article_id in
#{articleId}