|  | @@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.annotation.TableId;
 | 
	
		
			
				|  |  |  import com.baomidou.mybatisplus.annotation.TableName;
 | 
	
		
			
				|  |  |  import com.fasterxml.jackson.annotation.JsonFormat;
 | 
	
		
			
				|  |  |  import com.yonge.cooleshow.biz.dal.enums.ClientEnum;
 | 
	
		
			
				|  |  | +import com.yonge.cooleshow.common.enums.SysUserType;
 | 
	
		
			
				|  |  |  import io.swagger.annotations.ApiModel;
 | 
	
		
			
				|  |  |  import io.swagger.annotations.ApiModelProperty;
 | 
	
		
			
				|  |  |  import org.springframework.format.annotation.DateTimeFormat;
 | 
	
	
		
			
				|  | @@ -34,7 +35,7 @@ public class ReturnVisit implements Serializable {
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "用户类型 ",required = true)
 | 
	
		
			
				|  |  |      @TableField(value = "client_type_")
 | 
	
		
			
				|  |  |      @NotNull(message = "用户类型不能为空")
 | 
	
		
			
				|  |  | -    private ClientEnum clientType;
 | 
	
		
			
				|  |  | +    private SysUserType clientType;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "回访标题 ",required = true)
 | 
	
		
			
				|  |  |      @TableField(value = "title_")
 | 
	
	
		
			
				|  | @@ -72,11 +73,11 @@ public class ReturnVisit implements Serializable {
 | 
	
		
			
				|  |  |          this.userId = userId;
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    public ClientEnum getClientType() {
 | 
	
		
			
				|  |  | +    public SysUserType getClientType() {
 | 
	
		
			
				|  |  |          return clientType;
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    public void setClientType(ClientEnum clientType) {
 | 
	
		
			
				|  |  | +    public void setClientType(SysUserType clientType) {
 | 
	
		
			
				|  |  |          this.clientType = clientType;
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 |