select id, payment_bill_code, payment_bill_type, payment_time, vendor_code, order_code, total_price_with_tax, total_price_without_tax, tax_amount, create_by, create_time, update_by, update_time, remark, del_flag from oms_payment_bill
insert into oms_payment_bill
payment_bill_code,
payment_bill_type,
payment_time,
vendor_code,
order_code,
total_price_with_tax,
total_price_without_tax,
tax_amount,
create_by,
create_time,
update_by,
update_time,
remark,
del_flag,
#{paymentBillCode},
#{paymentBillType},
#{paymentTime},
#{vendorCode},
#{orderCode},
#{totalPriceWithTax},
#{totalPriceWithoutTax},
#{taxAmount},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
#{delFlag},
update oms_payment_bill
payment_bill_code = #{paymentBillCode},
payment_bill_type = #{paymentBillType},
payment_time = #{paymentTime},
vendor_code = #{vendorCode},
order_code = #{orderCode},
total_price_with_tax = #{totalPriceWithTax},
total_price_without_tax = #{totalPriceWithoutTax},
tax_amount = #{taxAmount},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
del_flag = #{delFlag},
where id = #{id}
delete from oms_payment_bill where id = #{id}
delete from oms_payment_bill where id in
#{id}