Form5.java
2.98 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
package com.jevon.wordDTO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* @author chen
* @version 1.0
* @date 2019/10/21 0021 9:59
*/
@ApiModel
public class Form5 {
@ApiModelProperty(value="题号")
private String examNumber ;
@ApiModelProperty(value="难度")
private String difficultName ;
@ApiModelProperty(value="分值")
private Double score ;
@ApiModelProperty(value="得分率 区")
private Double allRate ;
@ApiModelProperty(value="得分率 联盟校")
private Double leagueRate ;
@ApiModelProperty(value="得分率 本校")
private Double schoolRate ;
@ApiModelProperty(value="平均分 区")
private Double allAvg ;
@ApiModelProperty(value="平均分 联盟校")
private Double leagueAvg ;
@ApiModelProperty(value="平均分 本校")
private Double schoolAvg ;
@ApiModelProperty(value="区分度 区")
private Double allDist ;
@ApiModelProperty(value="区分度 联盟校")
private Double leagueDist ;
@ApiModelProperty(value="区分度 本校")
private Double schoolDist ;
public String getExamNumber() {
return examNumber;
}
public void setExamNumber(String examNumber) {
this.examNumber = examNumber;
}
public Double getScore() {
return score;
}
public void setScore(Double score) {
this.score = score;
}
public Double getAllRate() {
return allRate;
}
public void setAllRate(Double allRate) {
this.allRate = allRate;
}
public Double getSchoolRate() {
return schoolRate;
}
public void setSchoolRate(Double schoolRate) {
this.schoolRate = schoolRate;
}
public Double getAllAvg() {
return allAvg;
}
public void setAllAvg(Double allAvg) {
this.allAvg = allAvg;
}
public Double getSchoolAvg() {
return schoolAvg;
}
public void setSchoolAvg(Double schoolAvg) {
this.schoolAvg = schoolAvg;
}
public Double getAllDist() {
return allDist;
}
public void setAllDist(Double allDist) {
this.allDist = allDist;
}
public Double getSchoolDist() {
return schoolDist;
}
public void setSchoolDist(Double schoolDist) {
this.schoolDist = schoolDist;
}
public String getDifficultName() {
return difficultName;
}
public void setDifficultName(String difficultName) {
this.difficultName = difficultName;
}
public Double getLeagueRate() {
return leagueRate;
}
public void setLeagueRate(Double leagueRate) {
this.leagueRate = leagueRate;
}
public Double getLeagueAvg() {
return leagueAvg;
}
public void setLeagueAvg(Double leagueAvg) {
this.leagueAvg = leagueAvg;
}
public Double getLeagueDist() {
return leagueDist;
}
public void setLeagueDist(Double leagueDist) {
this.leagueDist = leagueDist;
}
}