select v.id, v.organization_id, v.vehicle_plate,
organization.organization_name,
v.vehicle_type, v.vehicle_status,
v.remark, v.create_time, v.update_time from dc_vehicles as v
left join dc_organization as organization on organization.id=v.organization_id
insert into dc_vehicles
id,organization_id,vehicle_plate,vehicle_type,vehicle_status,remark,create_time,update_time,#{id},#{organizationId},#{vehiclePlate},#{vehicleType},#{vehicleStatus},#{remark},#{createTime},#{updateTime},
update dc_vehicles
organization_id = #{organizationId},vehicle_plate = #{vehiclePlate},vehicle_type = #{vehicleType},vehicle_status = #{vehicleStatus},remark = #{remark},create_time = #{createTime},update_time = #{updateTime},
where id = #{id}
delete from dc_vehicles where id = #{id}
delete from dc_vehicles where id in
#{id}