insert into OAQuot quot_id, quotCode, quotCustomer, quotProject, quotLxr, quotLxrdh, totalPrice, rbDateUid, create_by, create_time #{quot_id}, #{quotCode}, #{quotCustomer}, #{quotProject}, #{quotLxr}, #{quotLxrdh}, #{totalPrice}, #{rbDateUid}, #{createBy}, getdate() update OAQuot quotCode = #{quotCode}, quotCustomer = #{quotCustomer}, quotProject = #{quotProject}, quotLxr = #{quotLxr}, quotLxrdh = #{quotLxrdh}, totalPrice = #{totalPrice}, rbDateUid = #{rbDateUid}, update_by = #{updateBy}, update_time = getdate() where quot_id = #{quot_id} insert into OAQuotProduct(quot_product_id, name_0, name_1, spec, voltage,stu,price,setPrice,count,allPrice,per,per2,quot_id) values ( #{item.quot_product_id}, #{item.name_0}, #{item.name_1}, #{item.spec}, #{item.voltage}, #{item.stu},cast(#{item.price,jdbcType=DECIMAL} as decimal(18,2)),cast(#{item.setPrice,jdbcType=DECIMAL} as decimal(18,2)), cast(#{item.count,jdbcType=DECIMAL} as decimal(18,3)), cast(#{item.allPrice,jdbcType=DECIMAL} as decimal(18,2)),cast(#{item.per,jdbcType=DECIMAL} as decimal(18,2)),cast(#{item.per2,jdbcType=DECIMAL} as decimal(18,2)), #{item.quot_id}) LEFT JOIN sys_user u on u.user_name=a.create_by LEFT JOIN sys_dept d on u.dept_id = d.dept_id delete from OAQuot where quot_id = #{quotId} delete from OAQuotProduct where quot_id = #{quotId}