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.
		
		
		
		
			
				
					
					
						
							33 lines
						
					
					
						
							765 B
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							765 B
						
					
					
				| package com.ynxbd.common.bean.his;
 | |
| 
 | |
| 
 | |
| import lombok.Getter;
 | |
| import lombok.NoArgsConstructor;
 | |
| import lombok.Setter;
 | |
| import lombok.ToString;
 | |
| 
 | |
| @Getter
 | |
| @Setter
 | |
| @ToString
 | |
| @NoArgsConstructor
 | |
| public class HisTreat {
 | |
|     private String mzNum;
 | |
|     private String registerDate;
 | |
|     private String patientId;
 | |
|     private String patientName;
 | |
|     private String deptCode;
 | |
|     private String deptName;
 | |
|     private String doctCode;
 | |
|     private String doctName;
 | |
|     // 处理意见 | 措施
 | |
|     private String advice;
 | |
|     // 西医诊断
 | |
|     private String diagnose;
 | |
|     private String diagnoseCode;
 | |
|     // 中医诊断
 | |
|     private String diagnose_zy;
 | |
|     private String diagnoseCode_ZY;
 | |
|     private String symptom;
 | |
|     private String complaint;
 | |
| 
 | |
| }
 | |
| 
 |