select id,
car_code,
driver_remark,
is_audit,
audit_user,
audit_time,
supplier_id,
create_time,
create_by,
user_id,
update_time,
update_by
from qp_transport_car
select t.id,
t.car_code,
t.driver_remark,
t.is_audit,
t.audit_user,
t.audit_time,
t.supplier_id,
t.create_time,
t.create_by,
t.user_id,
t.update_time,
t.update_by
from qp_transport_car as t
insert into qp_transport_car
car_code,
driver_remark,
is_audit,
audit_user,
audit_time,
supplier_id,
create_time,
create_by,
user_id,
update_time,
update_by,
#{carCode},
#{driverRemark},
#{isAudit},
#{auditUser},
#{auditTime},
#{supplierId},
#{createTime},
#{createBy},
#{userId},
#{updateTime},
#{updateBy},
update qp_transport_car
car_code = #{carCode},
driver_remark = #{driverRemark},
is_audit = #{isAudit},
audit_user = #{auditUser},
audit_time = #{auditTime},
supplier_id = #{supplierId},
create_time = #{createTime},
create_by = #{createBy},
user_id = #{userId},
update_time = #{updateTime},
update_by = #{updateBy},
where id = #{id}
delete
from qp_transport_car
where id = #{id}
delete from qp_transport_car where id in
#{id}