|  | @@ -113,6 +113,12 @@
 | 
	
		
			
				|  |  |  			<if	test="param.lessonSubject != null">
 | 
	
		
			
				|  |  |  				AND g.lesson_subject_ = #{param.lessonSubject}
 | 
	
		
			
				|  |  |  			</if>
 | 
	
		
			
				|  |  | +			<if test="null != param.search and '' != param.search">
 | 
	
		
			
				|  |  | +				AND (
 | 
	
		
			
				|  |  | +				g.lesson_name_ LIKE CONCAT('%', #{param.search}, '%') OR
 | 
	
		
			
				|  |  | +				s.username_ LIKE CONCAT('%', #{param.search}, '%')
 | 
	
		
			
				|  |  | +				)
 | 
	
		
			
				|  |  | +			</if>
 | 
	
		
			
				|  |  |  		</where>
 | 
	
		
			
				|  |  |  	</select>
 | 
	
		
			
				|  |  |  	<select id="selectStudentPage" resultType="com.yonge.cooleshow.biz.dal.vo.VideoLessonStudentDetailVo">
 |