InternshipStatisticsDetailEvaluateVo.java 678 B

12345678910111213141516171819202122232425262728293031323334
  1. package com.xjrsoft.module.databoard.vo;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.util.List;
  5. /**
  6. * @title: 实习详情统计-实习类型
  7. * @Author dzx
  8. * @Date: 2025年7月14日
  9. * @Version 1.0
  10. */
  11. @Data
  12. public class InternshipStatisticsDetailEvaluateVo {
  13. @ApiModelProperty("班级名称")
  14. private String className;
  15. /**
  16. * 完成总数
  17. */
  18. @ApiModelProperty("不合格数量")
  19. private Integer unqualifiedCount;
  20. /**
  21. * 未完成总数
  22. */
  23. @ApiModelProperty("合格数量")
  24. private Integer qualifiedCount;
  25. @ApiModelProperty("优秀数量")
  26. private Integer excellentCount;
  27. }