소스 검색

优化演示视频是否公开

LinWuTai 11 달 전
부모
커밋
e860b25847
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      lab-admin/src/main/resources/mapper/asset/TbDemoVideoMapper.xml

+ 1 - 0
lab-admin/src/main/resources/mapper/asset/TbDemoVideoMapper.xml

@@ -28,6 +28,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="name != null  and name != ''"> and name like concat('%', #{name}, '%')</if>
             <if test="type != null  and type != ''"> and type = #{type}</if>
             <if test="size != null  and size != ''"> and size &lt;= #{size}</if>
+            <if test="isPublic != null"> and is_public = #{isPublic}</if>
         </where>
     </select>