| 
					
				 | 
			
			
				@@ -1,6 +1,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 package com.yonge.cooleshow.biz.dal.dto.search; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.fasterxml.jackson.annotation.JsonFormat; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import com.yonge.cooleshow.biz.dal.enums.course.CourseRelationTypeEnum; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.yonge.cooleshow.common.enums.YesOrNoEnum; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.yonge.toolset.base.page.QueryInfo; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import io.swagger.annotations.ApiModel; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -52,6 +53,9 @@ public class CourseGroupSearch extends QueryInfo { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @ApiModelProperty(value = "老师id") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private Long teacherId; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    @ApiModelProperty(value = "关联曲目专辑类型,RECOMMEND:推荐  GIFT:赠品") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    private CourseRelationTypeEnum relationType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @ApiModelProperty("置顶") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private YesOrNoEnum topFlag; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -61,6 +65,14 @@ public class CourseGroupSearch extends QueryInfo { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @ApiModelProperty(value = "是否草稿 (0:否  1:是)",hidden = true) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private Integer draftFlag; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    public CourseRelationTypeEnum getRelationType() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        return relationType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    public void setRelationType(CourseRelationTypeEnum relationType) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.relationType = relationType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public YesOrNoEnum getTopFlag() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return topFlag; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 |