Form1.java
1.53 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
package com.jevon.vo.student;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* @author chen
* @version 1.0
* @date 2019/11/1 0001 11:08
*/
@ApiModel
public class Form1 {
@ApiModelProperty(value = "班级名称")
private String className ;
@ApiModelProperty(value = "最高分")
private Double maxScore ;
@ApiModelProperty(value = "自己得分")
private Double score ;
@ApiModelProperty(value = "打败了多少学生")
private Double rank ;
@ApiModelProperty(value = "学校排名")
private int schoolRank ;
@ApiModelProperty(value = "班级排名")
private int classRank ;
public String getClassName() {
return className;
}
public void setClassName(String className) {
this.className = className;
}
public Double getMaxScore() {
return maxScore;
}
public void setMaxScore(Double maxScore) {
this.maxScore = maxScore;
}
public Double getScore() {
return score;
}
public void setScore(Double score) {
this.score = score;
}
public Double getRank() {
return rank;
}
public void setRank(Double rank) {
this.rank = rank;
}
public int getSchoolRank() {
return schoolRank;
}
public void setSchoolRank(int schoolRank) {
this.schoolRank = schoolRank;
}
public int getClassRank() {
return classRank;
}
public void setClassRank(int classRank) {
this.classRank = classRank;
}
}