|
@@ -60,6 +60,12 @@ public class ExamTaskSync implements Serializable {
|
|
|
*/
|
|
|
@TableField("paper_type")
|
|
|
private String paperType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 试卷类型
|
|
|
+ */
|
|
|
+ @TableField("total_paper_type")
|
|
|
+ private String totalPaperType;
|
|
|
/**
|
|
|
* 机构代码
|
|
|
*/
|
|
@@ -98,13 +104,14 @@ public class ExamTaskSync implements Serializable {
|
|
|
public ExamTaskSync() {
|
|
|
}
|
|
|
|
|
|
- public ExamTaskSync(Long schoolId, Long examId, String courseCode, String paperNumber, String paperType, String orgCode, Integer thirdRelateId, ExamTaskSyncStatusEnum syncStatus, Long syncUserId, Long syncStartTime, Long syncEndTime) {
|
|
|
+ public ExamTaskSync(Long schoolId, Long examId, String courseCode, String paperNumber, String paperType, String totalPaperType, String orgCode, Integer thirdRelateId, ExamTaskSyncStatusEnum syncStatus, Long syncUserId, Long syncStartTime, Long syncEndTime) {
|
|
|
this.id = SystemConstant.getDbUuid();
|
|
|
this.schoolId = schoolId;
|
|
|
this.examId = examId;
|
|
|
this.courseCode = courseCode;
|
|
|
this.paperNumber = paperNumber;
|
|
|
this.paperType = paperType;
|
|
|
+ this.totalPaperType = totalPaperType;
|
|
|
this.orgCode = orgCode;
|
|
|
this.thirdRelateId = thirdRelateId;
|
|
|
this.syncStatus = syncStatus;
|
|
@@ -161,6 +168,14 @@ public class ExamTaskSync implements Serializable {
|
|
|
this.paperType = paperType;
|
|
|
}
|
|
|
|
|
|
+ public String getTotalPaperType() {
|
|
|
+ return totalPaperType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalPaperType(String totalPaperType) {
|
|
|
+ this.totalPaperType = totalPaperType;
|
|
|
+ }
|
|
|
+
|
|
|
public String getOrgCode() {
|
|
|
return orgCode;
|
|
|
}
|