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
						
					
					
						
							690 B
						
					
					
				
			
		
		
	
	
							30 lines
						
					
					
						
							690 B
						
					
					
				| package com.ynxbd.common.bean;
 | |
| 
 | |
| import lombok.Getter;
 | |
| import lombok.NoArgsConstructor;
 | |
| import lombok.Setter;
 | |
| import lombok.ToString;
 | |
| 
 | |
| import java.io.Serializable;
 | |
| 
 | |
| /**
 | |
|  * @Author wsq
 | |
|  * @Date 2021/3/9 17:13
 | |
|  * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | |
|  */
 | |
| @Setter
 | |
| @Getter
 | |
| @ToString
 | |
| @NoArgsConstructor
 | |
| public class Hospital implements Serializable {
 | |
|     private String hosId;
 | |
|     private String hosBrief;
 | |
|     private String address;
 | |
|     private String level;
 | |
|     private String postcode;
 | |
|     private String provinceCode;
 | |
|     private String province;
 | |
|     private String cityCode;
 | |
|     private String city;
 | |
|     private String tel;
 | |
| }
 | |
| 
 |