select id, invoice_receipt_bill_code, 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_invoice_receipt_bill
insert into oms_invoice_receipt_bill
invoice_receipt_bill_code,
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,
#{invoiceReceiptBillCode},
#{vendorCode},
#{orderCode},
#{totalPriceWithTax},
#{totalPriceWithoutTax},
#{taxAmount},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
#{delFlag},
update oms_invoice_receipt_bill
invoice_receipt_bill_code = #{invoiceReceiptBillCode},
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_invoice_receipt_bill where id = #{id}
delete from oms_invoice_receipt_bill where id in
#{id}