select station_id, station_name, station_address, oil_gun_num, contacts, phone, station_group_id, station_group_name, station_pic, station_longitude, station_latitude, mno from station_info
insert into station_info
station_id,
station_name,
station_address,
oil_gun_num,
contacts,
phone,
station_group_id,
station_group_name,
station_pic,
station_longitude,
station_latitude,
mno,
#{stationId},
#{stationName},
#{stationAddress},
#{oilGunNum},
#{contacts},
#{phone},
#{stationGroupId},
#{stationGroupName},
#{stationPic},
#{stationLongitude},
#{stationLatitude},
#{mno},
update station_info
station_name = #{stationName},
station_address = #{stationAddress},
oil_gun_num = #{oilGunNum},
contacts = #{contacts},
phone = #{phone},
station_group_id = #{stationGroupId},
station_group_name = #{stationGroupName},
station_pic = #{stationPic},
station_longitude = #{stationLongitude},
station_latitude = #{stationLatitude},
mno = #{mno},
where station_id = #{stationId}
delete from station_info where station_id = #{stationId}
delete from station_info where station_id in
#{stationId}