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.
		
		
		
		
			
				
					
					
						
							69 lines
						
					
					
						
							1.6 KiB
						
					
					
				
			
		
		
	
	
							69 lines
						
					
					
						
							1.6 KiB
						
					
					
				| package com.ynxbd.common.bean.in_hosp;
 | |
| 
 | |
| import lombok.Getter;
 | |
| import lombok.NoArgsConstructor;
 | |
| import lombok.Setter;
 | |
| import lombok.ToString;
 | |
| 
 | |
| import java.math.BigDecimal;
 | |
| import java.util.List;
 | |
| 
 | |
| /**
 | |
|  * 住院信息
 | |
|  *
 | |
|  * @Author wsq
 | |
|  * @Date 2021/3/18 17:15
 | |
|  * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | |
|  */
 | |
| @Setter
 | |
| @Getter
 | |
| @ToString(callSuper = true)
 | |
| @NoArgsConstructor
 | |
| public class InHosp {
 | |
| 
 | |
|     private String patientId;
 | |
|     // 患者名
 | |
|     private String patientName;
 | |
|     // 患者住址
 | |
|     private String patientAddress;
 | |
|     // 患者电话
 | |
|     private String patientTel;
 | |
|     // 住院号
 | |
|     private String inPatientNum;
 | |
|     // 预交金号
 | |
|     private String prepayNum;
 | |
|     // 床号
 | |
|     private String bedNo;
 | |
|     // 当前留院科室名称
 | |
|     private String currentDeptName;
 | |
|     // 入院日期
 | |
|     private String inDate;
 | |
|     // 出院日期
 | |
|     private String outDate;
 | |
|     // 住院费用合计
 | |
|     private BigDecimal totalAmount;
 | |
|     // 预交款合计
 | |
|     private BigDecimal prepayAmount;
 | |
|     // 预交金余额
 | |
|     private BigDecimal prepayBalance;
 | |
|     // 已结费用合计(初始为 0)
 | |
|     private BigDecimal settledAmount;
 | |
|     // 主管医师姓名
 | |
|     private String ZGYS;
 | |
|     // 主管护士姓名
 | |
|     private String ZGHS;
 | |
|     // 收据号
 | |
|     private String billNum;
 | |
|     // 收款日期
 | |
|     private String prepayDate;
 | |
|     // 收款方式
 | |
|     private String prepayWay;
 | |
|     // 收款金额
 | |
|     private BigDecimal prepayMoney;
 | |
|     //
 | |
|     private String treatNum;
 | |
|     // 备注
 | |
|     private String note;
 | |
| 
 | |
|     private List<InHosp> records;
 | |
| }
 | |
| 
 |