支持图片占位符

This commit is contained in:
2025-07-31 14:23:59 +08:00
parent f797479515
commit 41269572c7
2 changed files with 63 additions and 0 deletions

View File

@@ -248,4 +248,10 @@
set member_id = #{memberId}
where face_id = #{faceId}
</update>
<select id="listImageSourcesByFaceId" resultType="com.ycwl.basic.model.pc.source.entity.SourceEntity">
select s.*
from source s
inner join member_source ms on s.id = ms.source_id
where ms.face_id = #{faceId} and s.type = 2
</select>
</mapper>