insert into face(id, scenic_id, score, member_id, face_url, match_sample_ids, first_match_rate, match_result)
values (#{id}, #{scenicId}, #{score}, #{memberId}, #{faceUrl}, #{matchSampleIds}, #{firstMatchRate}, #{matchResult})
update face
scenic_id = #{scenicId},
member_id = #{memberId},
score = #{score},
face_url = #{faceUrl},
match_sample_ids = #{matchSampleIds},
first_match_rate = #{firstMatchRate},
match_result = #{matchResult},
where id = #{id}
update face set finished_journey = 1 where id = #{id}
delete from face where id = #{id}
delete from face where id in (
#{id}
)