BaseSetlStatistics.java 735 B

1234567891011121314151617181920212223242526272829303132333435
  1. package thyyxxk.webserver.entity.medicalinsurance.query;
  2. import lombok.Data;
  3. @Data
  4. public class BaseSetlStatistics {
  5. private String patNo;
  6. private Integer times;
  7. private Integer ledgerSn;
  8. private String insuplcAdmdvs;
  9. private String medfeeSumamt;
  10. private String insutype;
  11. private String insutypeName;
  12. /**
  13. * 基本医疗保险统筹基金支出
  14. */
  15. private String hifpPay;
  16. /**
  17. * 居民大病保险资金支出
  18. */
  19. private String hifmiPay;
  20. /**
  21. * 公务员医疗补助资金支出
  22. */
  23. private String cvlservPay;
  24. /**
  25. * 基金支付总额
  26. */
  27. private String fundPaySumamt;
  28. /**
  29. * 医院支付
  30. * */
  31. private String hospPay;
  32. }