|
@@ -0,0 +1,291 @@
|
|
|
|
+package com.qmth.teachcloud.report.business.bean.result;
|
|
|
|
+
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
+
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * @Description: TAExamCourseTeacherResult
|
|
|
|
+ * @Param:
|
|
|
|
+ * @return:
|
|
|
|
+ * @Author: wangliang
|
|
|
|
+ * @Date: 2021/6/10
|
|
|
|
+ */
|
|
|
|
+public class TAExamCourseTeacherResult implements Serializable {
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "老师姓名")
|
|
|
|
+ private String teacherName;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学院参考人数")
|
|
|
|
+ private Integer colRealityCount;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学院总人数")
|
|
|
|
+ private Integer colTotalCount;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学院缺考人数")
|
|
|
|
+ private Integer colAbsentCount;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学院最低分")
|
|
|
|
+ private BigDecimal colMinScore;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学院最高分")
|
|
|
|
+ private BigDecimal colMaxScore;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学院平均分")
|
|
|
|
+ private BigDecimal colAvgScore;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学院上四分位数")
|
|
|
|
+ private BigDecimal colUpperQuartile;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学院中位数")
|
|
|
|
+ private BigDecimal colMedian;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学院下四分位数")
|
|
|
|
+ private BigDecimal colLowerQuartile;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学院授课学生分数众数")
|
|
|
|
+ private String colMode;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学院授课学生分数标准差")
|
|
|
|
+ private BigDecimal colStandardDeviation;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学院相对位置")
|
|
|
|
+ private BigDecimal colRelativePosition;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学校参考人数")
|
|
|
|
+ private Integer schRealityCount;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学校总人数")
|
|
|
|
+ private Integer schTotalCount;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学校缺考人数")
|
|
|
|
+ private Integer schAbsentCount;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学校最低分")
|
|
|
|
+ private BigDecimal schMinScore;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学校最高分")
|
|
|
|
+ private BigDecimal schMaxScore;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学校平均分")
|
|
|
|
+ private BigDecimal schAvgScore;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学校上四分位数")
|
|
|
|
+ private BigDecimal schUpperQuartile;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学校中位数")
|
|
|
|
+ private BigDecimal schMedian;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学校下四分位数")
|
|
|
|
+ private BigDecimal schLowerQuartile;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学校授课学生分数众数")
|
|
|
|
+ private String schMode;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学校授课学生分数标准差")
|
|
|
|
+ private BigDecimal schStandardDeviation;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学校相对位置")
|
|
|
|
+ private BigDecimal schRelativePosition;
|
|
|
|
+
|
|
|
|
+ public String getTeacherName() {
|
|
|
|
+ return teacherName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTeacherName(String teacherName) {
|
|
|
|
+ this.teacherName = teacherName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getColRealityCount() {
|
|
|
|
+ return colRealityCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setColRealityCount(Integer colRealityCount) {
|
|
|
|
+ this.colRealityCount = colRealityCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getColTotalCount() {
|
|
|
|
+ return colTotalCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setColTotalCount(Integer colTotalCount) {
|
|
|
|
+ this.colTotalCount = colTotalCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getColAbsentCount() {
|
|
|
|
+ return colAbsentCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setColAbsentCount(Integer colAbsentCount) {
|
|
|
|
+ this.colAbsentCount = colAbsentCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getColMinScore() {
|
|
|
|
+ return colMinScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setColMinScore(BigDecimal colMinScore) {
|
|
|
|
+ this.colMinScore = colMinScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getColMaxScore() {
|
|
|
|
+ return colMaxScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setColMaxScore(BigDecimal colMaxScore) {
|
|
|
|
+ this.colMaxScore = colMaxScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getColAvgScore() {
|
|
|
|
+ return colAvgScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setColAvgScore(BigDecimal colAvgScore) {
|
|
|
|
+ this.colAvgScore = colAvgScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getColUpperQuartile() {
|
|
|
|
+ return colUpperQuartile;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setColUpperQuartile(BigDecimal colUpperQuartile) {
|
|
|
|
+ this.colUpperQuartile = colUpperQuartile;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getColMedian() {
|
|
|
|
+ return colMedian;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setColMedian(BigDecimal colMedian) {
|
|
|
|
+ this.colMedian = colMedian;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getColLowerQuartile() {
|
|
|
|
+ return colLowerQuartile;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setColLowerQuartile(BigDecimal colLowerQuartile) {
|
|
|
|
+ this.colLowerQuartile = colLowerQuartile;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getColMode() {
|
|
|
|
+ return colMode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setColMode(String colMode) {
|
|
|
|
+ this.colMode = colMode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getColStandardDeviation() {
|
|
|
|
+ return colStandardDeviation;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setColStandardDeviation(BigDecimal colStandardDeviation) {
|
|
|
|
+ this.colStandardDeviation = colStandardDeviation;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getColRelativePosition() {
|
|
|
|
+ return colRelativePosition;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setColRelativePosition(BigDecimal colRelativePosition) {
|
|
|
|
+ this.colRelativePosition = colRelativePosition;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getSchRealityCount() {
|
|
|
|
+ return schRealityCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSchRealityCount(Integer schRealityCount) {
|
|
|
|
+ this.schRealityCount = schRealityCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getSchTotalCount() {
|
|
|
|
+ return schTotalCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSchTotalCount(Integer schTotalCount) {
|
|
|
|
+ this.schTotalCount = schTotalCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getSchAbsentCount() {
|
|
|
|
+ return schAbsentCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSchAbsentCount(Integer schAbsentCount) {
|
|
|
|
+ this.schAbsentCount = schAbsentCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getSchMinScore() {
|
|
|
|
+ return schMinScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSchMinScore(BigDecimal schMinScore) {
|
|
|
|
+ this.schMinScore = schMinScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getSchMaxScore() {
|
|
|
|
+ return schMaxScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSchMaxScore(BigDecimal schMaxScore) {
|
|
|
|
+ this.schMaxScore = schMaxScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getSchAvgScore() {
|
|
|
|
+ return schAvgScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSchAvgScore(BigDecimal schAvgScore) {
|
|
|
|
+ this.schAvgScore = schAvgScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getSchUpperQuartile() {
|
|
|
|
+ return schUpperQuartile;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSchUpperQuartile(BigDecimal schUpperQuartile) {
|
|
|
|
+ this.schUpperQuartile = schUpperQuartile;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getSchMedian() {
|
|
|
|
+ return schMedian;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSchMedian(BigDecimal schMedian) {
|
|
|
|
+ this.schMedian = schMedian;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getSchLowerQuartile() {
|
|
|
|
+ return schLowerQuartile;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSchLowerQuartile(BigDecimal schLowerQuartile) {
|
|
|
|
+ this.schLowerQuartile = schLowerQuartile;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getSchMode() {
|
|
|
|
+ return schMode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSchMode(String schMode) {
|
|
|
|
+ this.schMode = schMode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getSchStandardDeviation() {
|
|
|
|
+ return schStandardDeviation;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSchStandardDeviation(BigDecimal schStandardDeviation) {
|
|
|
|
+ this.schStandardDeviation = schStandardDeviation;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getSchRelativePosition() {
|
|
|
|
+ return schRelativePosition;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSchRelativePosition(BigDecimal schRelativePosition) {
|
|
|
|
+ this.schRelativePosition = schRelativePosition;
|
|
|
|
+ }
|
|
|
|
+}
|