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.
33 lines
951 B
33 lines
951 B
package com.ynxbd.common.bean.in_hosp;
|
|
|
|
import lombok.Getter;
|
|
import lombok.NoArgsConstructor;
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 住院日费汇总
|
|
*
|
|
* @Author wsq
|
|
* @Date 2021/3/10 10:22
|
|
* @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
|
|
*/
|
|
@Setter
|
|
@Getter
|
|
@ToString
|
|
@NoArgsConstructor
|
|
public class InHospSummaryFee {
|
|
private String patientId; // 患者ID
|
|
private String patientName; // 患者姓名
|
|
private String treatNum; // 住院号
|
|
private String sex; // 性别
|
|
private String stayDeptName; // 当前留院科室
|
|
private String admissionDate; // 入院日期
|
|
private String dischargeDate; // 出院日期
|
|
private String lengthOfStay; // 在院天数
|
|
private String summaryFee; // 总费用
|
|
private List<InHospSummaryFeeItem> items; // 费用明细项
|
|
|
|
}
|
|
|