This commit is contained in:
2025-09-24 09:35:24 +08:00
parent becbe5f6ab
commit 7728f4424f
3 changed files with 12 additions and 6 deletions

View File

@@ -41,6 +41,11 @@
set score = #{score}
where id = #{id}
</update>
<update id="updateStatus">
update face_sample
set `status` = #{status}
where id = #{id}
</update>
<delete id="deleteById">
delete from face_sample where id = #{id}
</delete>