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.
30 lines
715 B
30 lines
715 B
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/10 10:29
|
|
* @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
|
|
*/
|
|
@Setter
|
|
@Getter
|
|
@ToString
|
|
@NoArgsConstructor
|
|
public class InHospFee {
|
|
private String patientName;
|
|
private String admissionDate;
|
|
private String admissionDeptName;
|
|
private String stayDeptName;
|
|
private String attendingPhysician;
|
|
private String lengthOfStay;
|
|
private BigDecimal totalHospitalization;
|
|
private List<InHospFeeItem> items;
|
|
|
|
}
|
|
|