|
@@ -1,5 +1,7 @@
|
|
|
package cn.com.qmth.examcloud.task.api.controller.bean;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
import javax.persistence.GeneratedValue;
|
|
|
import javax.persistence.Id;
|
|
|
|
|
@@ -45,6 +47,11 @@ public class ExamStudentImportDomain implements JsonSerializable {
|
|
|
*/
|
|
|
private String statusDesc;
|
|
|
|
|
|
+ /**
|
|
|
+ * 错误描述
|
|
|
+ */
|
|
|
+ private String errorDesc;
|
|
|
+
|
|
|
/**
|
|
|
* 文件名
|
|
|
*/
|
|
@@ -75,6 +82,16 @@ public class ExamStudentImportDomain implements JsonSerializable {
|
|
|
*/
|
|
|
private Long failNum;
|
|
|
|
|
|
+ /**
|
|
|
+ * 更新时间
|
|
|
+ */
|
|
|
+ private Date updateTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ private Date creationTime;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
@@ -123,6 +140,14 @@ public class ExamStudentImportDomain implements JsonSerializable {
|
|
|
this.statusDesc = statusDesc;
|
|
|
}
|
|
|
|
|
|
+ public String getErrorDesc() {
|
|
|
+ return errorDesc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setErrorDesc(String errorDesc) {
|
|
|
+ this.errorDesc = errorDesc;
|
|
|
+ }
|
|
|
+
|
|
|
public String getFileName() {
|
|
|
return fileName;
|
|
|
}
|
|
@@ -171,4 +196,20 @@ public class ExamStudentImportDomain implements JsonSerializable {
|
|
|
this.failNum = failNum;
|
|
|
}
|
|
|
|
|
|
+ public Date getUpdateTime() {
|
|
|
+ return updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(Date updateTime) {
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getCreationTime() {
|
|
|
+ return creationTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreationTime(Date creationTime) {
|
|
|
+ this.creationTime = creationTime;
|
|
|
+ }
|
|
|
+
|
|
|
}
|