|
@@ -106,6 +106,175 @@ public class TAExamCourse implements Serializable {
|
|
@TableField(value = "standard_deviation")
|
|
@TableField(value = "standard_deviation")
|
|
private BigDecimal standardDeviation;
|
|
private BigDecimal standardDeviation;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "总体卷面平均分")
|
|
|
|
+ @TableField(value = "paper_avg_score")
|
|
|
|
+ private BigDecimal paperAvgScore;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "应届卷面平均分")
|
|
|
|
+ @TableField(value = "paper_current_avg_score")
|
|
|
|
+ private BigDecimal paperCurrentAvgScore;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "总体卷面成绩通过率")
|
|
|
|
+ @TableField(value = "paper_pass_rate")
|
|
|
|
+ private BigDecimal paperPassRate;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "应届卷面成绩通过率")
|
|
|
|
+ @TableField(value = "paper_current_pass_rate")
|
|
|
|
+ private BigDecimal paperCurrentPassRate;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "赋分系数")
|
|
|
|
+ @TableField(value = "coefficient")
|
|
|
|
+ private BigDecimal coefficient;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "开课学院id")
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
+ @TableField(value = "teach_college_id")
|
|
|
|
+ private Long teachCollegeId;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "开课学院名称")
|
|
|
|
+ @TableField(value = "teach_college_name")
|
|
|
|
+ private String teachCollegeName;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "考察学院数量")
|
|
|
|
+ @TableField(value = "inspect_college_count")
|
|
|
|
+ private Integer inspectCollegeCount;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "应届实际考试人数占比")
|
|
|
|
+ @TableField(value = "current_reality_rate")
|
|
|
|
+ private BigDecimal currentRealityRate;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "应届总考试人数")
|
|
|
|
+ @TableField(value = "current_total_count")
|
|
|
|
+ private Integer currentTotalCount;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "应届实际考试人数")
|
|
|
|
+ @TableField(value = "current_reality_count")
|
|
|
|
+ private Integer currentRealityCount;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "往届实际考试人数占比")
|
|
|
|
+ @TableField(value = "past_reality_rate")
|
|
|
|
+ private BigDecimal pastRealityRate;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "往届总考试人数")
|
|
|
|
+ @TableField(value = "past_total_count")
|
|
|
|
+ private Integer pastTotalCount;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "往届实际考试人数")
|
|
|
|
+ @TableField(value = "past_reality_count")
|
|
|
|
+ private Integer pastRealityCount;
|
|
|
|
+
|
|
|
|
+ public Long getTeachCollegeId() {
|
|
|
|
+ return teachCollegeId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTeachCollegeId(Long teachCollegeId) {
|
|
|
|
+ this.teachCollegeId = teachCollegeId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getTeachCollegeName() {
|
|
|
|
+ return teachCollegeName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTeachCollegeName(String teachCollegeName) {
|
|
|
|
+ this.teachCollegeName = teachCollegeName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getInspectCollegeCount() {
|
|
|
|
+ return inspectCollegeCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setInspectCollegeCount(Integer inspectCollegeCount) {
|
|
|
|
+ this.inspectCollegeCount = inspectCollegeCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getCurrentRealityRate() {
|
|
|
|
+ return currentRealityRate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCurrentRealityRate(BigDecimal currentRealityRate) {
|
|
|
|
+ this.currentRealityRate = currentRealityRate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getCurrentTotalCount() {
|
|
|
|
+ return currentTotalCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCurrentTotalCount(Integer currentTotalCount) {
|
|
|
|
+ this.currentTotalCount = currentTotalCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getCurrentRealityCount() {
|
|
|
|
+ return currentRealityCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCurrentRealityCount(Integer currentRealityCount) {
|
|
|
|
+ this.currentRealityCount = currentRealityCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getPastRealityRate() {
|
|
|
|
+ return pastRealityRate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPastRealityRate(BigDecimal pastRealityRate) {
|
|
|
|
+ this.pastRealityRate = pastRealityRate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getPastTotalCount() {
|
|
|
|
+ return pastTotalCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPastTotalCount(Integer pastTotalCount) {
|
|
|
|
+ this.pastTotalCount = pastTotalCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getPastRealityCount() {
|
|
|
|
+ return pastRealityCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPastRealityCount(Integer pastRealityCount) {
|
|
|
|
+ this.pastRealityCount = pastRealityCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getPaperAvgScore() {
|
|
|
|
+ return paperAvgScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPaperAvgScore(BigDecimal paperAvgScore) {
|
|
|
|
+ this.paperAvgScore = paperAvgScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getPaperCurrentAvgScore() {
|
|
|
|
+ return paperCurrentAvgScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPaperCurrentAvgScore(BigDecimal paperCurrentAvgScore) {
|
|
|
|
+ this.paperCurrentAvgScore = paperCurrentAvgScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getPaperPassRate() {
|
|
|
|
+ return paperPassRate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPaperPassRate(BigDecimal paperPassRate) {
|
|
|
|
+ this.paperPassRate = paperPassRate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getPaperCurrentPassRate() {
|
|
|
|
+ return paperCurrentPassRate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPaperCurrentPassRate(BigDecimal paperCurrentPassRate) {
|
|
|
|
+ this.paperCurrentPassRate = paperCurrentPassRate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getCoefficient() {
|
|
|
|
+ return coefficient;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCoefficient(BigDecimal coefficient) {
|
|
|
|
+ this.coefficient = coefficient;
|
|
|
|
+ }
|
|
|
|
+
|
|
public static long getSerialVersionUID() {
|
|
public static long getSerialVersionUID() {
|
|
return serialVersionUID;
|
|
return serialVersionUID;
|
|
}
|
|
}
|