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.
		
		
		
		
			
				
					
					
						
							22 lines
						
					
					
						
							510 B
						
					
					
				
			
		
		
	
	
							22 lines
						
					
					
						
							510 B
						
					
					
				package com.ynxbd.common.bean.in_hosp;
 | 
						|
 | 
						|
import lombok.Getter;
 | 
						|
import lombok.NoArgsConstructor;
 | 
						|
import lombok.Setter;
 | 
						|
import lombok.ToString;
 | 
						|
 | 
						|
/**
 | 
						|
 * 住院日费汇总明细
 | 
						|
 *
 | 
						|
 * @Author wsq
 | 
						|
 * @Date 2021/3/10 10:22
 | 
						|
 * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | 
						|
 */
 | 
						|
@Setter
 | 
						|
@Getter
 | 
						|
@ToString
 | 
						|
@NoArgsConstructor
 | 
						|
public class InHospSummaryFeeItem {
 | 
						|
    private String thatDayFee;  // 查询日期内总费用
 | 
						|
    private String feeDate;     // 查询日期
 | 
						|
}
 | 
						|
 |