You've already forked FrameTour-BE
bug
This commit is contained in:
@@ -118,7 +118,7 @@
|
||||
where
|
||||
ms.member_id = #{memberId}
|
||||
<if test="scenicId!= null">and ms.scenic_id = #{scenicId} </if>
|
||||
<if test="isBuy!=null">and ms.is_buy = #{isBuy}</if>
|
||||
<if test="isBuy!=null">and ms.is_buy = #{isBuy} </if>
|
||||
<if test="type!=null">and ms.type = #{type} </if>
|
||||
<if test="faceId!=null">and ms.face_id = #{faceId} </if>
|
||||
order by so.create_time desc
|
||||
@@ -145,4 +145,12 @@
|
||||
from member_source
|
||||
where member_id = #{memberId} and source_id = #{sourceId} and type = #{type}
|
||||
</select>
|
||||
<select id="listVideoByFaceRelation" resultType="com.ycwl.basic.model.pc.source.entity.SourceEntity">
|
||||
select *
|
||||
from source
|
||||
where source.id in (
|
||||
select source_id from member_source where face_id = #{faceId} and type = 1
|
||||
)
|
||||
order by create_time desc
|
||||
</select>
|
||||
</mapper>
|
||||
|
Reference in New Issue
Block a user