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.
		
		
		
		
			
				
					
					
						
							55 lines
						
					
					
						
							777 B
						
					
					
				
			
		
		
	
	
							55 lines
						
					
					
						
							777 B
						
					
					
				| package com.ynxbd.common.bean.xbd;
 | |
| 
 | |
| import lombok.Getter;
 | |
| import lombok.NoArgsConstructor;
 | |
| import lombok.Setter;
 | |
| import lombok.ToString;
 | |
| 
 | |
| /**
 | |
|  * @author 李进才
 | |
|  * @ClassName MedicalRecordList
 | |
|  * @Description TODO
 | |
|  * @date 2023/05/05 11:17:00
 | |
|  */
 | |
| 
 | |
| 
 | |
| @Getter
 | |
| @Setter
 | |
| @ToString
 | |
| @NoArgsConstructor
 | |
| public class MedicalRecord {
 | |
|     /**
 | |
|      * 住院号
 | |
|      */
 | |
|     private String ipsId;
 | |
| 
 | |
|     /**
 | |
|      * 病人ID
 | |
|      */
 | |
|     private String ptId;
 | |
| 
 | |
|     /**
 | |
|      * 病人身份证号
 | |
|      */
 | |
|     private String ptIdcId;
 | |
| 
 | |
|     /**
 | |
|      * 病人姓名
 | |
|      */
 | |
|     private String ptName;
 | |
| 
 | |
|     /**
 | |
|      * 主要诊断
 | |
|      */
 | |
|     private String dx;
 | |
| 
 | |
|     /**
 | |
|      * 出院科室id
 | |
|      */
 | |
|     private String deptId;
 | |
| 
 | |
|     /**
 | |
|      * 出院科室名称
 | |
|      */
 | |
|     private String deptName;
 | |
| }
 | |
| 
 |