This commit is contained in:
2025-07-24 01:18:01 +08:00
parent eb61058fd1
commit 49b750e1af
8 changed files with 52 additions and 3 deletions

View File

@@ -517,4 +517,9 @@
and oi.goods_id = #{goodsId}
</if>
</select>
<update id="updateMemberIdByFaceId">
update `order`
set member_id = #{memberId}
where face_id = #{faceId}
</update>
</mapper>

View File

@@ -242,4 +242,9 @@
and ms.face_id = #{faceId}
<if test="type!=null">and ms.type = #{type} </if>
</select>
<update id="updateMemberIdByFaceId">
update member_source
set member_id = #{memberId}
where face_id = #{faceId}
</update>
</mapper>

View File

@@ -165,4 +165,9 @@
from video
where id = #{id}
</select>
<update id="updateMemberIdByFaceId">
update member_video
set member_id = #{memberId}
where face_id = #{faceId}
</update>
</mapper>