insert into mall_topic
(
`title`,
`content`,
`avatar`,
`item_pic_url`,
`subtitle`,
`topic_category_id`,
`price_info`,
`read_count`,
`scene_pic_url`,
`topic_template_id`,
`topic_tag_id`
)
values
(
#{title},
#{content},
#{avatar},
#{item_pic_url},
#{subtitle},
#{topic_category_id},
#{price_info},
#{read_count},
#{scene_pic_url},
#{topic_template_id},
#{topic_tag_id}
)
update mall_topic
`title` = #{title},
`content` = #{content},
`avatar` = #{avatar},
`item_pic_url` = #{item_pic_url},
`subtitle` = #{subtitle},
`topic_category_id` = #{topic_category_id},
`price_info` = #{price_info},
`read_count` = #{read_count},
`scene_pic_url` = #{scene_pic_url},
`topic_template_id` = #{topic_template_id},
`topic_tag_id` = #{topic_tag_id}
where id = #{id}
delete from mall_topic where id = #{value}
delete from mall_topic where id in
#{id}