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.
		
		
		
		
			
				
					
					
						
							30 lines
						
					
					
						
							628 B
						
					
					
				
			
		
		
	
	
							30 lines
						
					
					
						
							628 B
						
					
					
				| /*
 | |
|  * *
 | |
|  *  * @Project 微官网
 | |
|  *  * @Author 张剑峰
 | |
|  *  * @Date 2020/10/21 下午4:43
 | |
|  *  * @Description
 | |
|  *  * @Version v1.0.0
 | |
|  *  * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| package com.ynxbd.common.bean.lis;
 | |
| 
 | |
| import lombok.Getter;
 | |
| import lombok.NoArgsConstructor;
 | |
| import lombok.Setter;
 | |
| import lombok.ToString;
 | |
| 
 | |
| import java.io.Serializable;
 | |
| 
 | |
| @Setter
 | |
| @Getter
 | |
| @ToString
 | |
| @NoArgsConstructor
 | |
| public class XBDLisImageResult implements Serializable {
 | |
|     private String code;
 | |
|     private byte[] image;
 | |
|     private String imageBase64;
 | |
|     private String url;
 | |
| }
 | |
| 
 |