select id, process_id, out_time, out_pic, out_location, destination_time, destination_pic, destination_location, create_by, create_time, update_by,record_status, update_time, remark,out_address,destination_address from bk_destination_record
select LAST_INSERT_ID()
insert into bk_destination_record
id,
process_id,
out_time,
out_pic,
out_location,
destination_time,
record_status,
destination_pic,
destination_location,
create_by,
create_time,
update_by,
update_time,
remark,
out_address,
destination_address,
#{id},
#{processId},
#{outTime},
#{outPic},
#{outLocation},
#{destinationTime},
#{recordStatus},
#{destinationPic},
#{destinationLocation},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
#{outAddress},
#{destinationAddress},
update bk_destination_record
process_id = #{processId},
out_time = #{outTime},
out_pic = #{outPic},
out_location = #{outLocation},
record_status = #{recordStatus},
destination_time = #{destinationTime},
destination_pic = #{destinationPic},
destination_location = #{destinationLocation},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
out_address = #{outAddress},
destination_address = #{destinationAddress},
where id = #{id}
delete from bk_destination_record where id = #{id}
delete from bk_destination_record where id in
#{id}