select id, name, url, station_id, station_name, parent_id from station_pic
insert into station_pic
name,url,station_id,station_name,parent_id,#{name},#{url},#{stationId},#{stationName},#{parentId},
update station_pic
name = #{name},url = #{url},station_id = #{stationId},station_name = #{stationName},parent_id = #{parentId},
where id = #{id}
delete from station_pic where id = #{id}
delete from station_pic where id in
#{id}
delete from station_pic
and name like concat('%', #{name}, '%') and url = #{url} and station_id = #{stationId} and station_name like concat('%', #{stationName}, '%') and parent_id = #{parentId}