insert into mall_store_topic(
`title`,
`content`,
`item_pic_url`,
`subtitle`,
`prom_type_id`,
`topic_price`,
`store_id`,
`third_merch_sn`,
`is_valid`,
`note`,
`creater_sn`,
`create_time`,
`moder_sn`,
`mod_time`,
`tstm`)
values(
#{title},
#{content},
#{itemPicUrl},
#{subtitle},
#{promTypeId},
#{topicPrice},
#{storeId},
#{thirdMerchSn},
#{isValid},
#{note},
#{createrSn},
#{createTime},
#{moderSn},
#{modTime},
#{tstm})
update mall_store_topic
`title` = #{title},
`content` = #{content},
`item_pic_url` = #{itemPicUrl},
`subtitle` = #{subtitle},
`prom_type_id` = #{promTypeId},
`topic_price` = #{topicPrice},
`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_store_topic where id = #{value}
delete from mall_store_topic where id in
#{id}