You've already forked FrameTour-BE
bug修复等
This commit is contained in:
@ -137,9 +137,11 @@
|
||||
left join scenic sc on sc.id = so.scenic_id
|
||||
where
|
||||
ms.member_id = #{memberId}
|
||||
<if test="faceId!= null">and ms.face_id = #{faceId} </if>
|
||||
<if test="type!=null">and ms.type = #{type} </if>
|
||||
<if test="scenicId!= null">and ms.scenic_id = #{scenicId} </if>
|
||||
<if test="isBuy!=null">and ms.is_buy = #{isBuy}</if>
|
||||
order by so.create_time desc
|
||||
</select>
|
||||
<select id="querySameVideo" resultType="com.ycwl.basic.model.pc.source.entity.SourceEntity">
|
||||
select *
|
||||
|
@ -99,11 +99,7 @@
|
||||
<if test="isBuy!=null">and mv.is_buy = #{isBuy}</if>
|
||||
<if test="startTime!= null">and v.create_time >= #{startTime} </if>
|
||||
<if test="endTime!= null">and v.create_time <= #{endTime} </if>
|
||||
<if test="faceId!= null">
|
||||
and mv.task_id in (
|
||||
select id from task where face_id = #{faceId}
|
||||
)
|
||||
</if>
|
||||
<if test="faceId!= null">and mv.face_id = #{faceId} </if>
|
||||
</where>
|
||||
order by v.create_time desc
|
||||
</select>
|
||||
|
Reference in New Issue
Block a user