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.
		
		
		
		
			
				
					44 lines
				
				986 B
			
		
		
			
		
	
	
					44 lines
				
				986 B
			| 
											2 years ago
										 | package com.ynxbd.common.bean.in_hosp;
 | ||
|  | 
 | ||
|  | import lombok.Getter;
 | ||
|  | import lombok.NoArgsConstructor;
 | ||
|  | import lombok.Setter;
 | ||
|  | import lombok.ToString;
 | ||
|  | 
 | ||
|  | /**
 | ||
|  |  * @author 李进才
 | ||
|  |  * @ClassName InHospAllFee
 | ||
|  |  * @Description TODO
 | ||
|  |  * @date 2023/06/09 17:17:00
 | ||
|  |  */
 | ||
|  | 
 | ||
|  | @Setter
 | ||
|  | @Getter
 | ||
|  | @ToString
 | ||
|  | @NoArgsConstructor
 | ||
|  | public class InHospAllFee {
 | ||
|  |     private String listDetailNo;
 | ||
|  |     private String chargeName;
 | ||
|  |     private String prescribeCode;
 | ||
|  |     private String code;
 | ||
|  |     private String name;
 | ||
|  |     private String form;
 | ||
|  |     private String specification;
 | ||
|  |     private String unit;
 | ||
|  |     private String std;
 | ||
|  |     private String number;
 | ||
|  |     private String amt;
 | ||
|  |     private String selfAmt;
 | ||
|  |     private String receivableAmt;
 | ||
|  |     private String medicalCareType;
 | ||
|  |     private String medCareItemType;
 | ||
|  |     private String medReimburseRate;
 | ||
|  |     private String remark;
 | ||
|  |     private String sortNo;
 | ||
|  |     private String chrgType;
 | ||
|  |     private String payDate;
 | ||
|  |     private String medCareItemCode;
 | ||
|  |     private String medCareItemName;
 | ||
|  | 
 | ||
|  | }
 |