Merge pull request 'fix: 运动视频模糊查询' (#25) from zhoumingxiu into main

Reviewed-on: http://117.73.11.115:3000/Tony/god-ytr/pulls/25
This commit is contained in:
ming 2024-06-11 16:22:43 +08:00
commit a1d1d3d473

View File

@ -28,7 +28,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="equipName != null and equipName != ''"> and equip_name like concat('%', #{equipName}, '%')</if>
<if test="equipId != null and equipId != ''"> and equip_id = #{equipId}</if>
<if test="userName != null and userName != ''"> and user_name like concat('%', #{userName}, '%')</if>
<if test="userId != null and userId != ''"> and user_id = #{userId}</if>
<if test="userId != null and userId != ''"> and user_id like concat('%', #{userId}, '%')</if>
<if test="videoName != null and videoName != ''"> and video_name like concat('%', #{videoName}, '%')</if>
<if test="videoTime != null and videoTime != ''"> and video_time = #{videoTime}</if>
<if test="fileUrl != null and fileUrl != ''"> and file_url = #{fileUrl}</if>