|
@@ -1,6 +1,8 @@
|
|
package com.qmth.distributed.print.business.bean.dto;
|
|
package com.qmth.distributed.print.business.bean.dto;
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.qmth.distributed.print.business.entity.ExamDetailCourse;
|
|
import com.qmth.distributed.print.business.entity.ExamDetailCourse;
|
|
|
|
+import com.qmth.distributed.print.business.enums.ExamTaskSyncStatusEnum;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -10,6 +12,10 @@ public class ExamDetailCourseDto extends ExamDetailCourse {
|
|
|
|
|
|
private Long examTaskId;
|
|
private Long examTaskId;
|
|
|
|
|
|
|
|
+ private Integer thirdRelateId;
|
|
|
|
+
|
|
|
|
+ private ExamTaskSyncStatusEnum syncStatus;
|
|
|
|
+
|
|
public Long getExamTaskId() {
|
|
public Long getExamTaskId() {
|
|
return examTaskId;
|
|
return examTaskId;
|
|
}
|
|
}
|
|
@@ -17,4 +23,20 @@ public class ExamDetailCourseDto extends ExamDetailCourse {
|
|
public void setExamTaskId(Long examTaskId) {
|
|
public void setExamTaskId(Long examTaskId) {
|
|
this.examTaskId = examTaskId;
|
|
this.examTaskId = examTaskId;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public Integer getThirdRelateId() {
|
|
|
|
+ return thirdRelateId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setThirdRelateId(Integer thirdRelateId) {
|
|
|
|
+ this.thirdRelateId = thirdRelateId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public ExamTaskSyncStatusEnum getSyncStatus() {
|
|
|
|
+ return syncStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSyncStatus(ExamTaskSyncStatusEnum syncStatus) {
|
|
|
|
+ this.syncStatus = syncStatus;
|
|
|
|
+ }
|
|
}
|
|
}
|