ExportExcelByDeptDTO.java 672 B

12345678910111213141516171819202122232425262728
  1. package com.diagbot.dto;
  2. import cn.afterturn.easypoi.excel.annotation.Excel;
  3. import cn.afterturn.easypoi.excel.annotation.ExcelCollection;
  4. import lombok.Getter;
  5. import lombok.Setter;
  6. import java.util.List;
  7. /**
  8. * @Description:
  9. * @author: gaodm
  10. * @time: 2020/6/2 19:00
  11. */
  12. @Getter
  13. @Setter
  14. public class ExportExcelByDeptDTO {
  15. // @Excel(name = "科室", needMerge = true)
  16. private String behDeptName;
  17. @Excel(name = "主管医生", needMerge = true)
  18. private String doctorName;
  19. @Excel(name = "平均分数", needMerge = true)
  20. private Double avgScore;
  21. @ExcelCollection(name = "")
  22. private List<ExportExcelBehByDeptDTO> excelBehospitalDTOS;
  23. }