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.
		
		
		
		
			
				
					39 lines
				
				907 B
			
		
		
			
		
	
	
					39 lines
				
				907 B
			| 
											3 years ago
										 | package com.ynxbd.common.bean;
 | ||
|  | 
 | ||
|  | import lombok.Getter;
 | ||
|  | import lombok.NoArgsConstructor;
 | ||
|  | import lombok.Setter;
 | ||
|  | import lombok.ToString;
 | ||
|  | 
 | ||
|  | import java.io.Serializable;
 | ||
|  | 
 | ||
|  | /**
 | ||
|  |  * 治疗记录
 | ||
|  |  *
 | ||
|  |  * @Author wsq
 | ||
|  |  * @Date 2020/11/20 14:10
 | ||
|  |  * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | ||
|  |  */
 | ||
|  | 
 | ||
|  | @Setter
 | ||
|  | @Getter
 | ||
|  | @ToString
 | ||
|  | @NoArgsConstructor
 | ||
|  | public class TreatRecord implements Serializable {
 | ||
|  |     private static final long serialVersionUID = -5442749021496420670L;
 | ||
|  | 
 | ||
|  |     private String inOutState;
 | ||
|  |     private String treatNum;
 | ||
|  |     // 加密的患者id
 | ||
|  |     private String enPatientId;
 | ||
|  |     // 加密的就诊号
 | ||
|  |     private String enTreatNum;
 | ||
|  | 
 | ||
|  |     private String deptCode;
 | ||
|  |     private String deptName;
 | ||
|  |     private String doctCode;
 | ||
|  |     private String doctName;
 | ||
|  |     private String registerDate; // 注册日期
 | ||
|  |     private String consultDate;  // 可查日期
 | ||
|  | }
 |