select id, merchant_name, merchant_type, merchant_subtype, region, address, latitude, longitude from merchant_map_info
insert into merchant_map_info
merchant_name,merchant_type,merchant_subtype,region,address,latitude,longitude,#{merchantName},#{merchantType},#{merchantSubtype},#{region},#{address},#{latitude},#{longitude},
update merchant_map_info
merchant_name = #{merchantName},merchant_type = #{merchantType},merchant_subtype = #{merchantSubtype},region = #{region},address = #{address},latitude = #{latitude},longitude = #{longitude},
where id = #{id}
delete from merchant_map_info where id = #{id}
delete from merchant_map_info where id in
#{id}