|
@@ -1,7 +1,6 @@
|
|
|
package com.keao.edu.user.page;
|
|
|
|
|
|
import com.keao.edu.common.page.QueryInfo;
|
|
|
-import com.keao.edu.user.enums.ExamStatusEnum;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.util.Date;
|
|
@@ -15,7 +14,7 @@ public class ExamRoomQueryInfo extends QueryInfo {
|
|
|
private Long examRoomId;
|
|
|
|
|
|
@ApiModelProperty(value = "考级项目编号")
|
|
|
- private Date examId;
|
|
|
+ private Long examId;
|
|
|
|
|
|
@ApiModelProperty(value = "考试开始时间")
|
|
|
private Date StartTime;
|
|
@@ -48,11 +47,11 @@ public class ExamRoomQueryInfo extends QueryInfo {
|
|
|
this.examRoomId = examRoomId;
|
|
|
}
|
|
|
|
|
|
- public Date getExamId() {
|
|
|
+ public Long getExamId() {
|
|
|
return examId;
|
|
|
}
|
|
|
|
|
|
- public void setExamId(Date examId) {
|
|
|
+ public void setExamId(Long examId) {
|
|
|
this.examId = examId;
|
|
|
}
|
|
|
|