wangliang 4 anni fa
parent
commit
889f36e681

+ 25 - 0
teachcloud-report-business/src/main/java/com/qmth/teachcloud/report/business/entity/TAExamCourseDifficult.java

@@ -33,6 +33,15 @@ public class TAExamCourseDifficult implements Serializable {
     @TableField(value = "exam_id")
     private Long examId;
 
+    @ApiModelProperty(value = "试卷id")
+    @JsonSerialize(using = ToStringSerializer.class)
+    @TableField(value = "paper_id")
+    private Long paperId;
+
+    @ApiModelProperty(value = "试卷类型")
+    @TableField(value = "paper_type")
+    private String paperType;
+
     @ApiModelProperty(value = "科目编码")
     @TableField(value = "course_code")
     private String courseCode;
@@ -71,6 +80,22 @@ public class TAExamCourseDifficult implements Serializable {
     @TableField(value = "col_avg_score_rate")
     private BigDecimal colAvgScoreRate;
 
+    public Long getPaperId() {
+        return paperId;
+    }
+
+    public void setPaperId(Long paperId) {
+        this.paperId = paperId;
+    }
+
+    public String getPaperType() {
+        return paperType;
+    }
+
+    public void setPaperType(String paperType) {
+        this.paperType = paperType;
+    }
+
     public static long getSerialVersionUID() {
         return serialVersionUID;
     }

+ 25 - 0
teachcloud-report-business/src/main/java/com/qmth/teachcloud/report/business/entity/TAExamCourseTeacherDifficult.java

@@ -38,6 +38,15 @@ public class TAExamCourseTeacherDifficult implements Serializable {
     @TableField(value = "school_id")
     private Long schoolId;
 
+    @ApiModelProperty(value = "试卷id")
+    @JsonSerialize(using = ToStringSerializer.class)
+    @TableField(value = "paper_id")
+    private Long paperId;
+
+    @ApiModelProperty(value = "试卷类型")
+    @TableField(value = "paper_type")
+    private String paperType;
+
     @ApiModelProperty(value = "科目编码")
     @TableField(value = "course_code")
     private String courseCode;
@@ -75,6 +84,22 @@ public class TAExamCourseTeacherDifficult implements Serializable {
     @TableField(value = "tea_avg_score_rate")
     private BigDecimal teaAvgScoreRate;
 
+    public Long getPaperId() {
+        return paperId;
+    }
+
+    public void setPaperId(Long paperId) {
+        this.paperId = paperId;
+    }
+
+    public String getPaperType() {
+        return paperType;
+    }
+
+    public void setPaperType(String paperType) {
+        this.paperType = paperType;
+    }
+
     public static long getSerialVersionUID() {
         return serialVersionUID;
     }