ClassDetailVO.java
1.42 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.subsidy.vo.classdict;
import com.subsidy.util.excel.ExcelColumn;
import com.subsidy.vo.done.GetMaxScoreVO;
import lombok.Data;
import java.util.List;
@Data
public class ClassDetailVO{
private Long id;
@ExcelColumn(col = 1,value = "成员名称")
private String userName;
@ExcelColumn(col = 2,value = "账号")
private String accountName;
@ExcelColumn(col = 3,value = "身份证号")
private String idCard;
@ExcelColumn(col = 4,value = "联系方式")
private String telephone;
/**
* 签到次数
*/
@ExcelColumn(col = 5,value = "签到次数")
private Integer signCounts;
/**
* 已看视频
*/
private Integer studyVodCounts;
/**
* 全部视频
*/
private Integer allVodCounts;
@ExcelColumn(col = 6,value = "课程进度")
private String classProcess;
private Integer trainingLength;
@ExcelColumn(col = 7,value = "培训时长")
private String trainingLengthStr;
/**
* 作对个数
*/
private Integer rightCounts;
/**
* 总题数
*/
private Integer totalExeCounts;
/**
* 评价测试
*/
@ExcelColumn(col = 8,value = "评价测试")
private String score;
/**
* 答疑个数
*/
@ExcelColumn(col = 9,value = "答题数")
private Integer askCounts;
private String result;
private List<GetMaxScoreVO> getMaxScoreVOS;
}