|  |  | @ -3,17 +3,15 @@ package com.epmet.dto.form; | 
			
		
	
		
			
				
					|  |  |  | import lombok.Data; | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  | import javax.validation.constraints.NotBlank; | 
			
		
	
		
			
				
					|  |  |  | import java.io.Serializable; | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  | /** | 
			
		
	
		
			
				
					|  |  |  |  * @Author zxc | 
			
		
	
		
			
				
					|  |  |  |  * @DateTime 2021/1/18 下午4:43 | 
			
		
	
		
			
				
					|  |  |  |  */ | 
			
		
	
		
			
				
					|  |  |  | @Data | 
			
		
	
		
			
				
					|  |  |  | public class SsoLoginOperFormDTO extends LoginCommonFormDTO implements Serializable { | 
			
		
	
		
			
				
					|  |  |  | public class SsoLoginOperFormDTO extends LoginCommonFormDTO { | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |     private static final long serialVersionUID = 8711491709544498082L; | 
			
		
	
		
			
				
					|  |  |  |     private static final long serialVersionUID = -4215746830030486659L; | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |     public interface ThirdPlatformLoginForm { | 
			
		
	
		
			
				
					|  |  |  |     } | 
			
		
	
	
		
			
				
					|  |  | @ -25,10 +23,10 @@ public class SsoLoginOperFormDTO extends LoginCommonFormDTO implements Serializa | 
			
		
	
		
			
				
					|  |  |  |     private String thirdToken; | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |     /** | 
			
		
	
		
			
				
					|  |  |  |      * 上游系统token | 
			
		
	
		
			
				
					|  |  |  |      * 上游系统标识 | 
			
		
	
		
			
				
					|  |  |  |      * | 
			
		
	
		
			
				
					|  |  |  |      * @see com.epmet.enums.ThirdPlatformEnum | 
			
		
	
		
			
				
					|  |  |  |      */ | 
			
		
	
		
			
				
					|  |  |  |     @NotBlank(message = "token不能为空", groups = {ThirdPlatformLoginForm.class}) | 
			
		
	
		
			
				
					|  |  |  |     @NotBlank(message = "平台标识不能为空", groups = {ThirdPlatformLoginForm.class}) | 
			
		
	
		
			
				
					|  |  |  |     private String platform; | 
			
		
	
		
			
				
					|  |  |  | } | 
			
		
	
	
		
			
				
					|  |  | 
 |