t.id_ as id
, t.user_id_ as userId
, t.title_ as title
, t.content_ as content
, t.label_id_ as labelId
, t.label_name_ as labelName
, t.views_count_ as viewsCount
, t.likes_count_ as likesCount
, t.comments_count_ as commentsCount
, t.collects_count_ as collectsCount
, t.status_ as status
, t.top_flag_ as topFlag
, t.reply_flag_ as replyFlag
, t.examine_time_ as examineTime
, t.created_time_ as createdTime
, t.updated_time_ as updatedTime
, t.del_flag_ as delFlag
INSERT INTO bbs_article
(user_id_,title_,content_,label_id_,label_name_,status_,reply_flag_)
VALUES(#{userId},#{title},#{content},#{labelId},#{labelName},#{status},#{replyFlag})
UPDATE bbs_article SET del_flag_=1 WHERE id_ IN
#{item}