AverageStatisticsFeeDTO.java 799 B

1234567891011121314151617181920212223242526272829
  1. package com.diagbot.dto;
  2. import cn.afterturn.easypoi.excel.annotation.Excel;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. /**
  6. * @Description:
  7. * @Author:zhaops
  8. * @time: 2020/4/15 19:44
  9. */
  10. @Getter
  11. @Setter
  12. public class AverageStatisticsFeeDTO {
  13. private String id;
  14. @Excel(name = "科室", width = 30, orderNum = "1")
  15. private String name;
  16. private Integer num;
  17. @Excel(name = "本年平均住院花费(元)", width = 15, orderNum = "2")
  18. private Double averageValue = 0d;
  19. private Double totleValue = 0d;
  20. //环比平均值
  21. @Excel(name = "去年平均住院花费(元)", width = 15, orderNum = "3")
  22. private Double lastAverageValue = 0d;
  23. //同比平均值
  24. private Double lastYearAverageValue = 0d;
  25. //科室分类
  26. private String deptClass;
  27. }