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
						
					
					
						
							498 B
						
					
					
				
			
		
		
	
	
							28 lines
						
					
					
						
							498 B
						
					
					
				| package com.ynxbd.wx.wxfactory.bean;
 | |
| 
 | |
| import lombok.Getter;
 | |
| import lombok.NoArgsConstructor;
 | |
| import lombok.Setter;
 | |
| import lombok.ToString;
 | |
| 
 | |
| @Getter
 | |
| @Setter
 | |
| @ToString
 | |
| @NoArgsConstructor
 | |
| public class MedicalUserInfo {
 | |
|     // 姓名
 | |
|     private String userName;
 | |
|     // 授权码
 | |
|     private String payAuthNo;
 | |
|     // 坐标
 | |
|     private String longitude;
 | |
| 
 | |
|     private String latitude;
 | |
| 
 | |
|     private String cardNo;
 | |
| 
 | |
|     private boolean success;
 | |
| 
 | |
|     private String message;
 | |
| 
 | |
| }
 | |
| 
 |