|
@@ -0,0 +1,107 @@
|
|
|
+package com.qmth.teachcloud.report.business.bean.result;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
+import com.qmth.teachcloud.report.business.entity.TAExamCourse;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: TAExamCourseResult
|
|
|
+ * @Param:
|
|
|
+ * @return:
|
|
|
+ * @Author: wangliang
|
|
|
+ * @Date: 2021/6/8
|
|
|
+ */
|
|
|
+@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
|
+public class TAExamCourseResult extends TAExamCourse implements Serializable {
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "全体平均分-赋分前")
|
|
|
+ private BigDecimal avgScoreBefore;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "全体不及格率-赋分前")
|
|
|
+ private BigDecimal notPassRateBefore;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "应届平均分-赋分前")
|
|
|
+ private BigDecimal currentAvgScoreBefore;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "应届不及格率-赋分前")
|
|
|
+ private BigDecimal currentNotPassRateBefore;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "全体平均分-赋分后")
|
|
|
+ private BigDecimal avgScoreAfter;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "全体不及格率-赋分后")
|
|
|
+ private BigDecimal notPassRateAfter;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "应届平均分-赋分后")
|
|
|
+ private BigDecimal currentAvgScoreAfter;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "应届不及格率-赋分后")
|
|
|
+ private BigDecimal currentNotPassRateAfter;
|
|
|
+
|
|
|
+ public BigDecimal getAvgScoreBefore() {
|
|
|
+ return avgScoreBefore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAvgScoreBefore(BigDecimal avgScoreBefore) {
|
|
|
+ this.avgScoreBefore = avgScoreBefore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getNotPassRateBefore() {
|
|
|
+ return notPassRateBefore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNotPassRateBefore(BigDecimal notPassRateBefore) {
|
|
|
+ this.notPassRateBefore = notPassRateBefore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCurrentAvgScoreBefore() {
|
|
|
+ return currentAvgScoreBefore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCurrentAvgScoreBefore(BigDecimal currentAvgScoreBefore) {
|
|
|
+ this.currentAvgScoreBefore = currentAvgScoreBefore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCurrentNotPassRateBefore() {
|
|
|
+ return currentNotPassRateBefore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCurrentNotPassRateBefore(BigDecimal currentNotPassRateBefore) {
|
|
|
+ this.currentNotPassRateBefore = currentNotPassRateBefore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getAvgScoreAfter() {
|
|
|
+ return avgScoreAfter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAvgScoreAfter(BigDecimal avgScoreAfter) {
|
|
|
+ this.avgScoreAfter = avgScoreAfter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getNotPassRateAfter() {
|
|
|
+ return notPassRateAfter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNotPassRateAfter(BigDecimal notPassRateAfter) {
|
|
|
+ this.notPassRateAfter = notPassRateAfter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCurrentAvgScoreAfter() {
|
|
|
+ return currentAvgScoreAfter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCurrentAvgScoreAfter(BigDecimal currentAvgScoreAfter) {
|
|
|
+ this.currentAvgScoreAfter = currentAvgScoreAfter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCurrentNotPassRateAfter() {
|
|
|
+ return currentNotPassRateAfter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCurrentNotPassRateAfter(BigDecimal currentNotPassRateAfter) {
|
|
|
+ this.currentNotPassRateAfter = currentNotPassRateAfter;
|
|
|
+ }
|
|
|
+}
|