`hot_search_id`,`shop_id`,`content`,`create_time`,`update_time`,`seq`,`status`,`title`
insert into hot_search (`shop_id`,`content`,`seq`,`status`,`title`)
values (#{hotSearch.shopId},#{hotSearch.content},#{hotSearch.seq},#{hotSearch.status},#{hotSearch.title});
update hot_search
set `content` = #{hotSearch.content},`seq` = #{hotSearch.seq},`status` = #{hotSearch.status},`title` = #{hotSearch.title}
where hot_search_id = #{hotSearch.hotSearchId} and shop_id = #{hotSearch.shopId}
delete from hot_search where hot_search_id = #{hotSearchId} and shop_id = #{shopId}