select id,
cus_id,
pac_id,
pac_name,
pro_id,
pro_name,
parent_pro_id,
parent_pro_name,
ord_price,
now_price
from tb_transition
insert into tb_transition
id,
cus_id,
pac_id,
pac_name,
pro_id,
pro_name,
parent_pro_id,
parent_pro_name,
ord_price,
now_price,
#{id},
#{cusId},
#{pacId},
#{pacName},
#{proId},
#{proName},
#{parentProId},
#{parentProName},
#{ordPrice},
#{nowPrice},
update tb_transition
cus_id = #{cusId},
pac_id = #{pacId},
pac_name = #{pacName},
pro_id = #{proId},
pro_name = #{proName},
parent_pro_id = #{parentProId},
parent_pro_name = #{parentProName},
ord_price = #{ordPrice},
now_price = #{nowPrice},
where id = #{id}
delete
from tb_transition
where id = #{id}
delete from tb_transition where id in
#{id}