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.
		
		
		
		
			
				
					
					
						
							46 lines
						
					
					
						
							1.6 KiB
						
					
					
				
			
		
		
	
	
							46 lines
						
					
					
						
							1.6 KiB
						
					
					
				| package com.ynxbd.common.bean;
 | |
| 
 | |
| import lombok.Getter;
 | |
| import lombok.NoArgsConstructor;
 | |
| import lombok.Setter;
 | |
| import lombok.ToString;
 | |
| 
 | |
| import java.math.BigDecimal;
 | |
| 
 | |
| /**
 | |
|  * 核酸检测
 | |
|  *
 | |
|  * @Author wsq
 | |
|  * @Date 2021/6/23 15:28
 | |
|  * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | |
|  */
 | |
| @Setter
 | |
| @Getter
 | |
| @ToString
 | |
| @NoArgsConstructor
 | |
| public class RecipeSelfHelp {
 | |
|     private String applyDeptCode;     // 申请科室代码(开单科室代码)
 | |
|     private String applyDeptName;     // 申请科室名称(开单科室名称)
 | |
|     private String applyDoctCode;     // 申请医师代码(开单医师代码)
 | |
|     private String applyDoctName;     // 申请医师姓名(开单医师姓名)
 | |
|     private String executionDeptCode; // 执行科室代码
 | |
|     private String executionDeptName; // 执行科室名称
 | |
|     private String applicationCode;   // 申请单编码
 | |
|     private String applicationName;   // 申请单名称
 | |
|     private String checkGroupCode;      // 检验项目代码
 | |
|     private String checkGroupName;      // 检验项目名称
 | |
|     private BigDecimal checkGroupPrice; //检验项目单价
 | |
|     private String feeType; // 费用类别
 | |
|     private String times;   // 次数
 | |
|     private String note;    // 备注
 | |
|     private String chiefComplaint; // 主诉
 | |
|     private String diagnose;       // 诊断
 | |
|     // 双采
 | |
|     private String applicationCode2;
 | |
|     private String applicationName2;
 | |
|     private String checkGroupCode2;
 | |
|     private String checkGroupName2;
 | |
|     private String checkGroupPrice2;
 | |
|     private String feeType2;
 | |
|     private String times2; // 次数
 | |
| }
 | |
| 
 |