You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					
					
						
							21 lines
						
					
					
						
							433 B
						
					
					
				
			
		
		
	
	
							21 lines
						
					
					
						
							433 B
						
					
					
				package com.ynxbd.common.bean;
 | 
						|
 | 
						|
import lombok.Getter;
 | 
						|
import lombok.NoArgsConstructor;
 | 
						|
import lombok.Setter;
 | 
						|
import lombok.ToString;
 | 
						|
 | 
						|
/**
 | 
						|
 * @Author wsq
 | 
						|
 * @Date 2021/3/15 11:20
 | 
						|
 * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | 
						|
 */
 | 
						|
@Setter
 | 
						|
@Getter
 | 
						|
@ToString
 | 
						|
@NoArgsConstructor
 | 
						|
public class ServiceInfo {
 | 
						|
    private String message;
 | 
						|
    private String code;
 | 
						|
    private String result;
 | 
						|
}
 | 
						|
 |