1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package org.springblade.modules.exam.vo;
|
| import lombok.Data;
|
| import java.util.List;
|
| @Data
| public class ExamSocreStatisVo {
|
| /**
| * 学校名称
| */
| private String name;
|
| /**
| * 是否合格 1:合格 2:不合格
| */
| private Integer type;
|
| /**
| * 人数对应的数组
| */
| private List<Integer> examSocreStatis;
|
| }
|
|