| 
					
				 | 
			
			
				@@ -2,6 +2,7 @@ package com.yonge.cooleshow.biz.dal.dto.search; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.fasterxml.jackson.annotation.JsonFormat; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.yonge.cooleshow.biz.dal.enums.AuthStatusEnum; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import com.yonge.cooleshow.biz.dal.enums.ChargeTypeEnum; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.yonge.toolset.base.page.QueryInfo; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import io.swagger.annotations.ApiModel; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import io.swagger.annotations.ApiModelProperty; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -35,6 +36,8 @@ public class TeacherMusicSheetAuditSearch extends QueryInfo{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private Date endTime; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    @ApiModelProperty(value = "收费类型(FREE:免费;VIP:会员;CHARGE:单曲收费)") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    private ChargeTypeEnum chargeType;  //收费类型(0:免费;1:会员;2:单曲收费) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @ApiModelProperty(value = "审核状态  UNPAALY、未申请 DOING、审核中 PASS、通过 UNPASS、不通过") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private AuthStatusEnum authStatus; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -42,6 +45,14 @@ public class TeacherMusicSheetAuditSearch extends QueryInfo{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @ApiModelProperty(value = "假删除 0 : 未删除 1:已删除",hidden = true) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private Boolean delFlag = false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    public ChargeTypeEnum getChargeType() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        return chargeType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    public void setChargeType(ChargeTypeEnum chargeType) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.chargeType = chargeType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public String getIdAndName() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return idAndName; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 |