select id, dd_id, user_id, driver_id, boarding_address, into_longitude, into_latitude, down_address, down_longitude, down_latitude, distance, state, taxi_type, release_id, order_time, boarding_time, alighting_time, appointment_time, fare, highway_costs, amount, estimated_duration, notes, coupon from taxi_order
insert into taxi_order
dd_id,
user_id,
driver_id,
boarding_address,
into_longitude,
into_latitude,
down_address,
down_longitude,
down_latitude,
distance,
state,
taxi_type,
release_id,
order_time,
boarding_time,
alighting_time,
appointment_time,
fare,
highway_costs,
amount,
estimated_duration,
notes,
coupon,
#{ddId},
#{userId},
#{driverId},
#{boardingAddress},
#{intoLongitude},
#{intoLatitude},
#{downAddress},
#{downLongitude},
#{downLatitude},
#{distance},
#{state},
#{taxiType},
#{releaseId},
#{orderTime},
#{boardingTime},
#{alightingTime},
#{appointmentTime},
#{fare},
#{highwayCosts},
#{amount},
#{estimatedDuration},
#{notes},
#{coupon},
update taxi_order
dd_id = #{ddId},
user_id = #{userId},
driver_id = #{driverId},
boarding_address = #{boardingAddress},
into_longitude = #{intoLongitude},
into_latitude = #{intoLatitude},
down_address = #{downAddress},
down_longitude = #{downLongitude},
down_latitude = #{downLatitude},
distance = #{distance},
state = #{state},
taxi_type = #{taxiType},
release_id = #{releaseId},
order_time = #{orderTime},
boarding_time = #{boardingTime},
alighting_time = #{alightingTime},
appointment_time = #{appointmentTime},
fare = #{fare},
highway_costs = #{highwayCosts},
amount = #{amount},
estimated_duration = #{estimatedDuration},
notes = #{notes},
coupon = #{coupon},
where id = #{id}
delete from taxi_order where id = #{id}
delete from taxi_order where id in
#{id}