select list_id, order_type, customer_id, goods_id, goods_num, goods_desc, spare1, spare2 from app_pms_order_out
insert into app_pms_order_out
list_id,
order_type,
customer_id,
goods_id,
goods_num,
goods_desc,
spare1,
spare2,
#{listId},
#{orderType},
#{customerId},
#{goodsId},
#{goodsNum},
#{goodsDesc},
#{spare1},
#{spare2},
update app_pms_order_out
order_type = #{orderType},
customer_id = #{customerId},
goods_id = #{goodsId},
goods_num = #{goodsNum},
goods_desc = #{goodsDesc},
spare1 = #{spare1},
spare2 = #{spare2},
where list_id = #{listId}
delete from app_pms_order_out where list_id = #{listId}
delete from app_pms_order_out where list_id in
#{listId}