select id, stock_code, transaction_begin_time, transaction_end_time, transaction_price from stock_pre
insert into stock_pre
stock_code,transaction_begin_time,transaction_end_time,transaction_price,#{stockCode},#{transactionBeginTime},#{transactionEndTime},#{transactionPrice},
update stock_pre
stock_code = #{stockCode},transaction_begin_time = #{transactionBeginTime},transaction_end_time = #{transactionEndTime},transaction_price = #{transactionPrice},
where id = #{id}
delete from stock_pre where id = #{id}
delete from stock_pre where id in
#{id}