ExportDoctorAverageLevel_90DTO.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. package com.diagbot.dto;
  2. import cn.afterturn.easypoi.excel.annotation.Excel;
  3. import cn.afterturn.easypoi.excel.annotation.ExcelCollection;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import io.swagger.annotations.ApiModel;
  6. import io.swagger.annotations.ApiModelProperty;
  7. import lombok.Getter;
  8. import lombok.Setter;
  9. import java.io.Serializable;
  10. import java.util.Date;
  11. import java.util.List;
  12. /**
  13. * @Description: 医生质控平均分-患者列表(等级)-接口出参
  14. * @Author songxl
  15. * @Date 2022/4/11 9:20
  16. */
  17. @ApiModel(value = "医生质控平均分-患者列表(等级)-接口出参")
  18. @Getter
  19. @Setter
  20. public class ExportDoctorAverageLevel_90DTO implements Serializable {
  21. private static final long serialVersionUID = 4875168077452918044L;
  22. @ApiModelProperty(value = "科室")
  23. @Excel(name = "科室", needMerge = true)
  24. private String behDeptName;
  25. @Excel(name = "平均分数", needMerge = true)
  26. private Double avgScore;
  27. @ApiModelProperty(value = "科室")
  28. @ExcelCollection(name = "" )
  29. private List<ExportBehospital_90DTO> excelBehospitalDTOS;
  30. }