支持默认获取人脸

This commit is contained in:
2024-12-16 19:01:52 +08:00
parent dab3f4356f
commit d527a8fdce
11 changed files with 40 additions and 7 deletions

View File

@ -86,4 +86,11 @@
from face
where scenic_id = #{scenicId} and finished_journey != 1
</select>
<select id="findLastFaceByUserId" resultType="com.ycwl.basic.model.pc.face.resp.FaceRespVO">
select id, scenic_id, member_id, face_url,score, match_sample_ids, first_match_rate, match_result, create_at, update_at
from face
where member_id = #{userId}
order by create_at desc
limit 1
</select>
</mapper>