select id, fleet_company_id, car_num, driver_id, driver_name,driver_tel, hang_num, fuel_type, car_type, car_name, car_brand, manufacture_unit, office_of_certificate, pull_car_type, pull_car_shelf_num, mount_car_type, mount_car_num, engine, car_load_persion, buy_car_date, regiest_date, abandon_date, outer_size, sum_weight, vouch_weight, equip_weight, driving_license_src, driving_pendant_src, operation_license_src, technology_src, driving_load_src, second_lv_maintain_src, taffic_constranint_insurance_src, business_insurance_src, accpet_carrage_insurance_src, creat_time, modification_time, bill_status, del_flag, create_by, update_by, update_time, remarks from fleet_car_manage
    
    
    
    
    
    
    
        insert into fleet_car_manage
        
            fleet_company_id,
            car_num,
            driver_id,
            driver_name,
            driver_tel ,
            hang_num,
            fuel_type,
            car_type,
            car_name,
            car_brand,
            manufacture_unit,
            office_of_certificate,
            pull_car_type,
            pull_car_shelf_num,
            mount_car_type,
            mount_car_num,
            engine,
            car_load_persion,
            buy_car_date,
            regiest_date,
            abandon_date,
            outer_size,
            sum_weight,
            vouch_weight,
            equip_weight,
            driving_license_src,
            driving_pendant_src,
            operation_license_src,
            technology_src,
            driving_load_src,
            second_lv_maintain_src,
            taffic_constranint_insurance_src,
            business_insurance_src,
            accpet_carrage_insurance_src,
            creat_time,
            modification_time,
            bill_status,
            del_flag,
            create_by,
            update_by,
            update_time,
            remarks,
        
        
            #{fleetCompanyId},
            #{carNum},
            #{driverId},
            #{driverName},
            #{driverTel},
            #{hangNum},
            #{fuelType},
            #{carType},
            #{carName},
            #{carBrand},
            #{manufactureUnit},
            #{officeOfCertificate},
            #{pullCarType},
            #{pullCarShelfNum},
            #{mountCarType},
            #{mountCarNum},
            #{engine},
            #{carLoadPersion},
            #{buyCarDate},
            #{regiestDate},
            #{abandonDate},
            #{outerSize},
            #{sumWeight},
            #{vouchWeight},
            #{equipWeight},
            #{drivingLicenseSrc},
            #{drivingPendantSrc},
            #{operationLicenseSrc},
            #{technologySrc},
            #{drivingLoadSrc},
            #{secondLvMaintainSrc},
            #{tafficConstranintInsuranceSrc},
            #{businessInsuranceSrc},
            #{accpetCarrageInsuranceSrc},
            #{creatTime},
            #{modificationTime},
            #{billStatus},
            #{delFlag},
            #{createBy},
            #{updateBy},
            #{updateTime},
            #{remarks},
        
    
    
        update fleet_car_manage
        
            fleet_company_id = #{fleetCompanyId},
            car_num = #{carNum},
            driver_id = #{driverId},
            driver_name = #{driverName},
            driver_tel = #{driverTel},
            hang_num = #{hangNum},
            fuel_type = #{fuelType},
            car_type = #{carType},
            car_name = #{carName},
            car_brand = #{carBrand},
            manufacture_unit = #{manufactureUnit},
            office_of_certificate = #{officeOfCertificate},
            pull_car_type = #{pullCarType},
            pull_car_shelf_num = #{pullCarShelfNum},
            mount_car_type = #{mountCarType},
            mount_car_num = #{mountCarNum},
            engine = #{engine},
            car_load_persion = #{carLoadPersion},
            buy_car_date = #{buyCarDate},
            regiest_date = #{regiestDate},
            abandon_date = #{abandonDate},
            outer_size = #{outerSize},
            sum_weight = #{sumWeight},
            vouch_weight = #{vouchWeight},
            equip_weight = #{equipWeight},
            driving_license_src = #{drivingLicenseSrc},
            driving_pendant_src = #{drivingPendantSrc},
            operation_license_src = #{operationLicenseSrc},
            technology_src = #{technologySrc},
            driving_load_src = #{drivingLoadSrc},
            second_lv_maintain_src = #{secondLvMaintainSrc},
            taffic_constranint_insurance_src = #{tafficConstranintInsuranceSrc},
            business_insurance_src = #{businessInsuranceSrc},
            accpet_carrage_insurance_src = #{accpetCarrageInsuranceSrc},
            creat_time = #{creatTime},
            modification_time = #{modificationTime},
            bill_status = #{billStatus},
            del_flag = #{delFlag},
            create_by = #{createBy},
            update_by = #{updateBy},
            update_time = #{updateTime},
            remarks = #{remarks},
        
        where id = #{id}
    
    
        update fleet_car_manage
        set driver_tel = #{driverTel}, driver_name = #{driverName}
        where driver_id = #{driverId}
    
    
        delete from fleet_car_manage where id = #{id}
    
    
        delete from fleet_car_manage where id in 
        
            #{id}