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.
		
		
		
		
			
				
					
					
						
							28 lines
						
					
					
						
							625 B
						
					
					
				
			
		
		
	
	
							28 lines
						
					
					
						
							625 B
						
					
					
				| package com.ynxbd.common.bean.report;
 | |
| 
 | |
| import lombok.Getter;
 | |
| import lombok.NoArgsConstructor;
 | |
| import lombok.Setter;
 | |
| import lombok.ToString;
 | |
| 
 | |
| /**
 | |
|  * 体检报告
 | |
|  *
 | |
|  * @Author wsq
 | |
|  * @Date 2021/3/10 13:24
 | |
|  * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | |
|  */
 | |
| @Setter
 | |
| @Getter
 | |
| @ToString
 | |
| @NoArgsConstructor
 | |
| public class PEIS {
 | |
|     private static final long serialVersionUID = 2644523037489548584L;
 | |
|     private String id;
 | |
|     private String examDate;
 | |
|     private String tel1;
 | |
|     private String tel2;
 | |
|     private String combineImagePath;
 | |
|     private String splitImagePath;
 | |
| 
 | |
| }
 | |
| 
 |