|
@@ -100,4 +100,100 @@ public class ReportSubjectCollegeDTO {
|
|
|
this.realityCount = r.getRealityCount();
|
|
|
this.totalCount = r.getTotalCount();
|
|
|
}
|
|
|
+
|
|
|
+ public String getSubjectCode() {
|
|
|
+ return subjectCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectCode(String subjectCode) {
|
|
|
+ this.subjectCode = subjectCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSubjectName() {
|
|
|
+ return subjectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectName(String subjectName) {
|
|
|
+ this.subjectName = subjectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCollegeName() {
|
|
|
+ return collegeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCollegeName(String collegeName) {
|
|
|
+ this.collegeName = collegeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMaxScore() {
|
|
|
+ return maxScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaxScore(String maxScore) {
|
|
|
+ this.maxScore = maxScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMinScore() {
|
|
|
+ return minScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMinScore(String minScore) {
|
|
|
+ this.minScore = minScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAvgScore() {
|
|
|
+ return avgScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAvgScore(String avgScore) {
|
|
|
+ this.avgScore = avgScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPassRate() {
|
|
|
+ return passRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPassRate(String passRate) {
|
|
|
+ this.passRate = passRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getPassCount() {
|
|
|
+ return passCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPassCount(Integer passCount) {
|
|
|
+ this.passCount = passCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getExcellentRate() {
|
|
|
+ return excellentRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExcellentRate(String excellentRate) {
|
|
|
+ this.excellentRate = excellentRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getExcellentCount() {
|
|
|
+ return excellentCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExcellentCount(Integer excellentCount) {
|
|
|
+ this.excellentCount = excellentCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTotalCount() {
|
|
|
+ return totalCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalCount(Integer totalCount) {
|
|
|
+ this.totalCount = totalCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getRealityCount() {
|
|
|
+ return realityCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRealityCount(Integer realityCount) {
|
|
|
+ this.realityCount = realityCount;
|
|
|
+ }
|
|
|
}
|