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.
		
		
		
		
			
				
					66 lines
				
				1.0 KiB
			
		
		
			
		
	
	
					66 lines
				
				1.0 KiB
			| 
											2 years ago
										 | 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 {
 | ||
|  |     /**
 | ||
|  |      * 入院时间
 | ||
|  |      */
 | ||
|  |     public String inHospTime;
 | ||
|  |     /**
 | ||
|  |      * 住院号
 | ||
|  |      */
 | ||
|  |     public String ipsId;
 | ||
|  |     /**
 | ||
|  |      * 主要诊断
 | ||
|  |      */
 | ||
|  |     public String dx;
 | ||
|  |     /**
 | ||
|  |      * 入院科室代码
 | ||
|  |      */
 | ||
|  |     public String inHospDeptCode;
 | ||
|  |     /**
 | ||
|  |      * 患者Id
 | ||
|  |      */
 | ||
|  |     public String ptId;
 | ||
|  |     /**
 | ||
|  |      * 患者身份证号
 | ||
|  |      */
 | ||
|  |     public String ptIdcId;
 | ||
|  |     /**
 | ||
|  |      * 科室名称
 | ||
|  |      */
 | ||
|  |     public String deptName;
 | ||
|  |     /**
 | ||
|  |      * 出院时间
 | ||
|  |      */
 | ||
|  |     public String outHospTime;
 | ||
|  |     /**
 | ||
|  |      * 患者姓名
 | ||
|  |      */
 | ||
|  |     public String ptName;
 | ||
|  |     /**
 | ||
|  |      * 出院科室code
 | ||
|  |      */
 | ||
|  |     public String deptId;
 | ||
|  |     /**
 | ||
|  |      * 入院科室名称
 | ||
|  |      */
 | ||
|  |     public String inHospDeptName;
 | ||
|  | }
 |