insert into OAQuot
quot_id,
quotCode,
quotCustomer,
quotProject,
quotLxr,
quotLxrdh,
create_by,
create_time
#{quot_id},
#{quotCode},
#{quotCustomer},
#{quotProject},
#{quotLxr},
#{quotLxrdh},
#{createBy},
getdate()
insert into OAQuotProduct(quot_product_id, name_0, spec, voltage,stu,setPrice,count,allPrice,quot_id) values
( #{item.quot_product_id}, #{item.name_0}, #{item.spec}, #{item.voltage}, #{item.stu},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)), #{item.quot_id})