|  | @@ -3,6 +3,8 @@ package com.ym.mec.biz.dal.entity;
 | 
	
		
			
				|  |  |  import com.ym.mec.common.enums.BaseEnum;
 | 
	
		
			
				|  |  |  import io.swagger.annotations.ApiModelProperty;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +import javax.validation.constraints.NotBlank;
 | 
	
		
			
				|  |  | +import javax.validation.constraints.PastOrPresent;
 | 
	
		
			
				|  |  |  import java.util.Date;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  public class StudentVisit {
 | 
	
	
		
			
				|  | @@ -43,6 +45,7 @@ public class StudentVisit {
 | 
	
		
			
				|  |  |      * 乐团id
 | 
	
		
			
				|  |  |      */
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "乐团id",required = true)
 | 
	
		
			
				|  |  | +    @NotBlank(message = "乐团id不能为空")
 | 
	
		
			
				|  |  |      private String musicGroupId;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      /**
 | 
	
	
		
			
				|  | @@ -73,12 +76,14 @@ public class StudentVisit {
 | 
	
		
			
				|  |  |      * 回访类型
 | 
	
		
			
				|  |  |      */
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "回访类型",required = true)
 | 
	
		
			
				|  |  | +    @NotBlank(message = "回访类型不能为空")
 | 
	
		
			
				|  |  |      private String type;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      /**
 | 
	
		
			
				|  |  |      * 回访目的
 | 
	
		
			
				|  |  |      */
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "回访目的",required = true)
 | 
	
		
			
				|  |  | +    @NotBlank(message = "回访目的不能为空")
 | 
	
		
			
				|  |  |      private String purpose;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      /**
 | 
	
	
		
			
				|  | @@ -97,6 +102,7 @@ public class StudentVisit {
 | 
	
		
			
				|  |  |      * 回访日期
 | 
	
		
			
				|  |  |      */
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "回访日期",required = true)
 | 
	
		
			
				|  |  | +    @PastOrPresent(message = "回访日期不能大于当天")
 | 
	
		
			
				|  |  |      private Date visitTime;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      /**
 |