| 12345678910111213141516171819202122232425262728293031323334 |
- package com.xjrsoft.module.databoard.vo;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.List;
- /**
- * @title: 实习详情统计-实习类型
- * @Author dzx
- * @Date: 2025年7月14日
- * @Version 1.0
- */
- @Data
- public class InternshipStatisticsDetailEvaluateVo {
- @ApiModelProperty("班级名称")
- private String className;
- /**
- * 完成总数
- */
- @ApiModelProperty("不合格数量")
- private Integer unqualifiedCount;
- /**
- * 未完成总数
- */
- @ApiModelProperty("合格数量")
- private Integer qualifiedCount;
- @ApiModelProperty("优秀数量")
- private Integer excellentCount;
- }
|