select adjust_price_id, oil_name, oil_adjust_price, take_effect_status, take_effect_date, adjust_date, station_id, station_name, operator, status, oil_price_id from station_oil_price_adjust
insert into station_oil_price_adjust
oil_name,
oil_adjust_price,
take_effect_status,
take_effect_date,
adjust_date,
station_id,
station_name,
operator,
status,
oil_price_id,
#{oilName},
#{oilAdjustPrice},
#{takeEffectStatus},
#{takeEffectDate},
#{adjustDate},
#{stationId},
#{stationName},
#{operator},
#{status},
#{oilPriceId},
update station_oil_price_adjust
oil_name = #{oilName},
oil_adjust_price = #{oilAdjustPrice},
take_effect_status = #{takeEffectStatus},
take_effect_date = #{takeEffectDate},
adjust_date = #{adjustDate},
station_id = #{stationId},
station_name = #{stationName},
operator = #{operator},
status = #{status},
oil_price_id = #{oilPriceId},
where adjust_price_id = #{adjustPriceId}
delete from station_oil_price_adjust where adjust_price_id = #{adjustPriceId}
delete from station_oil_price_adjust where adjust_price_id in
#{adjustPriceId}