|
|
@@ -0,0 +1,43 @@
|
|
|
+package org.dromara.main.domain.vo;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serial;
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class MainExamApplyRecordVo implements Serializable {
|
|
|
+
|
|
|
+ @Serial
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ private Long evaluationId;
|
|
|
+
|
|
|
+ private String evaluationName;
|
|
|
+
|
|
|
+ private Long studentId;
|
|
|
+
|
|
|
+ private String applyStatus;
|
|
|
+
|
|
|
+ private String finalResult;
|
|
|
+
|
|
|
+ private String statusText;
|
|
|
+
|
|
|
+ private String statusType;
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date scheduleStartTime;
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date deadlineTime;
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date finishedTime;
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date createTime;
|
|
|
+}
|