1234567891011121314151617181920212223242526272829303132333435 |
- package thyyxxk.webserver.entity.medicalinsurance.query;
- import lombok.Data;
- @Data
- public class BaseSetlStatistics {
- private String patNo;
- private Integer times;
- private Integer ledgerSn;
- private String insuplcAdmdvs;
- private String medfeeSumamt;
- private String insutype;
- private String insutypeName;
- /**
- * 基本医疗保险统筹基金支出
- */
- private String hifpPay;
- /**
- * 居民大病保险资金支出
- */
- private String hifmiPay;
- /**
- * 公务员医疗补助资金支出
- */
- private String cvlservPay;
- /**
- * 基金支付总额
- */
- private String fundPaySumamt;
- /**
- * 医院支付
- * */
- private String hospPay;
- }
|