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.
		
		
		
		
			
				
					
					
						
							72 lines
						
					
					
						
							1.7 KiB
						
					
					
				
			
		
		
	
	
							72 lines
						
					
					
						
							1.7 KiB
						
					
					
				| package com.ynxbd.common.bean;
 | |
| 
 | |
| import lombok.Getter;
 | |
| import lombok.NoArgsConstructor;
 | |
| import lombok.Setter;
 | |
| import lombok.ToString;
 | |
| 
 | |
| import java.math.BigDecimal;
 | |
| import java.util.List;
 | |
| 
 | |
| /**
 | |
|  * 处方
 | |
|  *
 | |
|  * @Author wsq
 | |
|  * @Date 2020/11/6 9:57
 | |
|  * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | |
|  */
 | |
| @Setter
 | |
| @Getter
 | |
| @ToString
 | |
| @NoArgsConstructor
 | |
| public class HisRecipe {
 | |
|     // 处方id
 | |
|     private String id;
 | |
|     // 处方名称
 | |
|     private String name;
 | |
|     // 执行科室编码
 | |
|     private String deptCode;
 | |
|     // 执行科室名称
 | |
|     private String deptName;
 | |
|     // 开单科室编码
 | |
|     private String doctDeptCode; // req
 | |
|     // 开单科室名称
 | |
|     private String doctDeptName; // req
 | |
|     // 执行医生编码
 | |
|     private String doctCode;
 | |
|     // 执行医生姓名
 | |
|     private String doctName;
 | |
|     // 开单日期
 | |
|     private String date;
 | |
|     // 费用发生日期
 | |
|     private String execDate;
 | |
|     // 门诊号
 | |
|     private String mzNum;
 | |
|     // 执行位置
 | |
|     private String address;
 | |
|     // 备注
 | |
|     private String note;
 | |
|     // 处方类型
 | |
|     private String medicalType;
 | |
|     //
 | |
|     private String diseaseCode;
 | |
|     // 是否附加计费
 | |
|     private String fjjfFlag;
 | |
|     // 总金额
 | |
|     private BigDecimal amount;
 | |
|     // 院区编码
 | |
|     private String hospitalAreaCode;
 | |
|     // 院区名称
 | |
|     private String hospitalAreaName;
 | |
| 
 | |
| 
 | |
|     private String ybAttrib; //医保属性,值域:4为慢性病,5为特殊病
 | |
| 
 | |
|     private Integer ybJsFlag; //是否允许医保支付
 | |
| 
 | |
|     private String ybBZCode; //病种编码
 | |
| 
 | |
|     private String ybBZName; //病种名称
 | |
| 
 | |
|     private List<HisRecipeItem> item;
 | |
| }
 | |
| 
 |