select marker_id, marker_name, marker_type, address, show_pictures, icon_pictures, lat, lng, label_text, business_hours, shape_type, location_set, radius, brief_content, content from t_marker
insert into t_marker
marker_id,
marker_name,
marker_type,
address,
show_pictures,
icon_pictures,
lat,
lng,
label_text,
business_hours,
shape_type,
location_set,
radius,
brief_content,
content,
#{markerId},
#{markerName},
#{markerType},
#{address},
#{showPictures},
#{iconPictures},
#{lat},
#{lng},
#{labelText},
#{businessHours},
#{shapeType},
#{locationSet},
#{radius},
#{briefContent},
#{content},
update t_marker
marker_name = #{markerName},
marker_type = #{markerType},
address = #{address},
show_pictures = #{showPictures},
icon_pictures = #{iconPictures},
lat = #{lat},
lng = #{lng},
label_text = #{labelText},
business_hours = #{businessHours},
shape_type = #{shapeType},
location_set = #{locationSet},
radius = #{radius},
brief_content = #{briefContent},
content = #{content},
where marker_id = #{markerId}
delete from t_marker where marker_id = #{markerId}
delete from t_marker where marker_id in
#{markerId}