|
@@ -1,5 +1,7 @@
|
|
|
package cn.com.qmth.examcloud.support.examing;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
|
|
|
/**
|
|
@@ -26,6 +28,11 @@ public class ExamBoss implements JsonSerializable {
|
|
|
* 完结次数
|
|
|
*/
|
|
|
private int endCount;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 未同步的考试记录id
|
|
|
+ */
|
|
|
+ private List<Long> examRecordDataIds;
|
|
|
|
|
|
public int getStartCount() {
|
|
|
return startCount;
|
|
@@ -43,4 +50,14 @@ public class ExamBoss implements JsonSerializable {
|
|
|
this.endCount = endCount;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ public List<Long> getExamRecordDataIds() {
|
|
|
+ return examRecordDataIds;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public void setExamRecordDataIds(List<Long> examRecordDataIds) {
|
|
|
+ this.examRecordDataIds = examRecordDataIds;
|
|
|
+ }
|
|
|
+
|
|
|
}
|