|
@@ -13,7 +13,8 @@ import cn.com.qmth.examcloud.core.reports.dao.entity.share.IdEntity;
|
|
|
@Index(name = "IDX_R_EXAM_STUDENT_COUNT_01", columnList = "rootOrgId,orgId,examId", unique = true),
|
|
|
@Index(name = "IDX_R_EXAM_STUDENT_COUNT_02", columnList = "rootOrgId", unique = false),
|
|
|
@Index(name = "IDX_R_EXAM_STUDENT_COUNT_03", columnList = "orgId", unique = false),
|
|
|
- @Index(name = "IDX_R_EXAM_STUDENT_COUNT_04", columnList = "examId", unique = false)})
|
|
|
+ @Index(name = "IDX_R_EXAM_STUDENT_COUNT_04", columnList = "examId", unique = false),
|
|
|
+ @Index(name = "IDX_R_EXAM_STUDENT_COUNT_05", columnList = "batchTime", unique = false)})
|
|
|
public class ExamStudentCountEntity extends IdEntity {
|
|
|
|
|
|
|
|
@@ -22,6 +23,8 @@ public class ExamStudentCountEntity extends IdEntity {
|
|
|
*/
|
|
|
private static final long serialVersionUID = 8818247713349613850L;
|
|
|
@NotNull
|
|
|
+ private Long batchTime;
|
|
|
+ @NotNull
|
|
|
private Long rootOrgId;
|
|
|
@NotNull
|
|
|
private Long orgId;
|
|
@@ -59,4 +62,11 @@ public class ExamStudentCountEntity extends IdEntity {
|
|
|
public void setExamId(Long examId) {
|
|
|
this.examId = examId;
|
|
|
}
|
|
|
+ public Long getBatchTime() {
|
|
|
+ return batchTime;
|
|
|
+ }
|
|
|
+ public void setBatchTime(Long batchTime) {
|
|
|
+ this.batchTime = batchTime;
|
|
|
+ }
|
|
|
+
|
|
|
}
|