|
@@ -5,6 +5,7 @@ import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
import cn.com.qmth.examcloud.support.enums.ExamRecordStatus;
|
|
|
import cn.com.qmth.examcloud.support.enums.HandInExamType;
|
|
|
import cn.com.qmth.examcloud.support.enums.IsSuccess;
|
|
|
+import cn.com.qmth.examcloud.support.enums.SyncStatus;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.EnumType;
|
|
@@ -176,6 +177,11 @@ public class ExamRecordData implements JsonSerializable {
|
|
|
*/
|
|
|
private Double succPercent;
|
|
|
|
|
|
+ /**
|
|
|
+ * 数据同步状态
|
|
|
+ */
|
|
|
+ private SyncStatus syncStatus;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
@@ -431,4 +437,12 @@ public class ExamRecordData implements JsonSerializable {
|
|
|
public void setIsIllegality(Boolean illegality) {
|
|
|
isIllegality = illegality;
|
|
|
}
|
|
|
+
|
|
|
+ public SyncStatus getSyncStatus() {
|
|
|
+ return syncStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSyncStatus(SyncStatus syncStatus) {
|
|
|
+ this.syncStatus = syncStatus;
|
|
|
+ }
|
|
|
}
|