select detail_id, order_id, position_id, tire_id, tire_code, tread_depth, tire_press, tire_status, create_by, create_time, update_by, update_time, remark from biz_order_tire_detail
insert into biz_order_tire_detail
order_id,
position_id,
tire_id,
tire_code,
tread_depth,
tire_press,
tire_status,
create_by,
create_time,
update_by,
update_time,
remark,
#{orderId},
#{positionId},
#{tireId},
#{tireCode},
#{treadDepth},
#{tirePress},
#{tireStatus},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
update biz_order_tire_detail
order_id = #{orderId},
position_id = #{positionId},
tire_id = #{tireId},
tire_code = #{tireCode},
tread_depth = #{treadDepth},
tire_press = #{tirePress},
tire_status = #{tireStatus},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
where detail_id = #{detailId}
delete from biz_order_tire_detail where detail_id = #{detailId}
delete from biz_order_tire_detail where detail_id in
#{detailId}