|
@@ -14,10 +14,10 @@ import java.io.Serializable;
|
|
|
public class SurveyTeacherGradeDistributionResult implements Serializable {
|
|
|
|
|
|
@ApiModelProperty(value = "总体赋分前人数")
|
|
|
- private Double allCountBefore;
|
|
|
+ private Integer allCountBefore;
|
|
|
|
|
|
@ApiModelProperty(value = "总体赋分后人数")
|
|
|
- private Double allCountAfter;
|
|
|
+ private Integer allCountAfter;
|
|
|
|
|
|
@ApiModelProperty(value = "总体赋分前比率")
|
|
|
private Double allCountRateBefore;
|
|
@@ -26,10 +26,10 @@ public class SurveyTeacherGradeDistributionResult implements Serializable {
|
|
|
private Double allCountRateAfter;
|
|
|
|
|
|
@ApiModelProperty(value = "应届赋分前人数")
|
|
|
- private Double currentCountBefore;
|
|
|
+ private Integer currentCountBefore;
|
|
|
|
|
|
@ApiModelProperty(value = "应届赋分后人数")
|
|
|
- private Double currentCountAfter;
|
|
|
+ private Integer currentCountAfter;
|
|
|
|
|
|
@ApiModelProperty(value = "应届赋分前比率")
|
|
|
private Double currentCountRateBefore;
|
|
@@ -44,8 +44,8 @@ public class SurveyTeacherGradeDistributionResult implements Serializable {
|
|
|
|
|
|
}
|
|
|
|
|
|
- public SurveyTeacherGradeDistributionResult(Double allCountBefore, Double allCountAfter,
|
|
|
- Double currentCountBefore, Double currentCountAfter,
|
|
|
+ public SurveyTeacherGradeDistributionResult(Integer allCountBefore, Integer allCountAfter,
|
|
|
+ Integer currentCountBefore, Integer currentCountAfter,
|
|
|
Double allCountRateBefore, Double allCountRateAfter,
|
|
|
Double currentCountRateBefore, Double currentCountRateAfter, String describe) {
|
|
|
this.allCountBefore = allCountBefore;
|
|
@@ -59,52 +59,52 @@ public class SurveyTeacherGradeDistributionResult implements Serializable {
|
|
|
this.describe = describe;
|
|
|
}
|
|
|
|
|
|
- public Double getAllCountBefore() {
|
|
|
+ public Integer getAllCountBefore() {
|
|
|
return allCountBefore;
|
|
|
}
|
|
|
|
|
|
- public void setAllCountBefore(Double allCountBefore) {
|
|
|
+ public void setAllCountBefore(Integer allCountBefore) {
|
|
|
this.allCountBefore = allCountBefore;
|
|
|
}
|
|
|
|
|
|
- public Double getAllCountAfter() {
|
|
|
+ public Integer getAllCountAfter() {
|
|
|
return allCountAfter;
|
|
|
}
|
|
|
|
|
|
- public void setAllCountAfter(Double allCountAfter) {
|
|
|
+ public void setAllCountAfter(Integer allCountAfter) {
|
|
|
this.allCountAfter = allCountAfter;
|
|
|
}
|
|
|
|
|
|
- public Double getAllCountRateBefore() {
|
|
|
- return allCountRateBefore;
|
|
|
+ public Integer getCurrentCountBefore() {
|
|
|
+ return currentCountBefore;
|
|
|
}
|
|
|
|
|
|
- public void setAllCountRateBefore(Double allCountRateBefore) {
|
|
|
- this.allCountRateBefore = allCountRateBefore;
|
|
|
+ public void setCurrentCountBefore(Integer currentCountBefore) {
|
|
|
+ this.currentCountBefore = currentCountBefore;
|
|
|
}
|
|
|
|
|
|
- public Double getAllCountRateAfter() {
|
|
|
- return allCountRateAfter;
|
|
|
+ public Integer getCurrentCountAfter() {
|
|
|
+ return currentCountAfter;
|
|
|
}
|
|
|
|
|
|
- public void setAllCountRateAfter(Double allCountRateAfter) {
|
|
|
- this.allCountRateAfter = allCountRateAfter;
|
|
|
+ public void setCurrentCountAfter(Integer currentCountAfter) {
|
|
|
+ this.currentCountAfter = currentCountAfter;
|
|
|
}
|
|
|
|
|
|
- public Double getCurrentCountBefore() {
|
|
|
- return currentCountBefore;
|
|
|
+ public Double getAllCountRateBefore() {
|
|
|
+ return allCountRateBefore;
|
|
|
}
|
|
|
|
|
|
- public void setCurrentCountBefore(Double currentCountBefore) {
|
|
|
- this.currentCountBefore = currentCountBefore;
|
|
|
+ public void setAllCountRateBefore(Double allCountRateBefore) {
|
|
|
+ this.allCountRateBefore = allCountRateBefore;
|
|
|
}
|
|
|
|
|
|
- public Double getCurrentCountAfter() {
|
|
|
- return currentCountAfter;
|
|
|
+ public Double getAllCountRateAfter() {
|
|
|
+ return allCountRateAfter;
|
|
|
}
|
|
|
|
|
|
- public void setCurrentCountAfter(Double currentCountAfter) {
|
|
|
- this.currentCountAfter = currentCountAfter;
|
|
|
+ public void setAllCountRateAfter(Double allCountRateAfter) {
|
|
|
+ this.allCountRateAfter = allCountRateAfter;
|
|
|
}
|
|
|
|
|
|
public Double getCurrentCountRateBefore() {
|