insert into mall_topic(
`title`,
`content`,
`item_pic_url`,
`subtitle`,
`prom_type_id`,
`price_info`,
`read_count`,
`scene_pic_url`,
`topic_template_id`,
`topic_tag_id`,
`store_id`,
`third_merch_sn`,
`is_valid`,
`note`,
`creater_sn`,
`create_time`,
`moder_sn`,
`mod_time`,
`tstm`)
values(
#{title},
#{content},
#{itemPicUrl},
#{subtitle},
#{promTypeId},
#{priceInfo},
#{readCount},
#{scenePicUrl},
#{topicTemplateId},
#{topicTagId},
#{storeId},
#{thirdMerchSn},
#{isValid},
#{note},
#{createrSn},
#{createTime},
#{moderSn},
#{modTime},
#{tstm})
update mall_topic
`title` = #{title},
`content` = #{content},
`item_pic_url` = #{itemPicUrl},
`subtitle` = #{subtitle},
`prom_type_id` = #{promTypeId},
`price_info` = #{priceInfo},
`read_count` = #{readCount},
`scene_pic_url` = #{scenePicUrl},
`topic_template_id` = #{topicTemplateId},
`topic_tag_id` = #{topicTagId},
`store_id` = #{storeId},
`third_merch_sn` = #{thirdMerchSn},
`is_valid` = #{isValid},
`note` = #{note},
`creater_sn` = #{createrSn},
`create_time` = #{createTime},
`moder_sn` = #{moderSn},
`mod_time` = #{modTime},
`tstm` = #{tstm}
where id = #{id}
delete from mall_topic where id = #{value}
delete from mall_topic where id in
#{id}