WANG 5 gadi atpakaļ
vecāks
revīzija
0b4d89811c

+ 15 - 0
src/main/java/cn/com/qmth/examcloud/support/cache/bean/StudentCacheBean.java

@@ -1,5 +1,7 @@
 package cn.com.qmth.examcloud.support.cache.bean;
 
+import java.util.List;
+
 import cn.com.qmth.examcloud.web.cache.RandomCacheBean;
 
 public class StudentCacheBean extends RandomCacheBean {
@@ -32,6 +34,11 @@ public class StudentCacheBean extends RandomCacheBean {
 	 */
 	private String securityPhone;
 
+	/**
+	 * 学号集合
+	 */
+	private List<String> studentCodeList;
+
 	public Long getId() {
 		return id;
 	}
@@ -112,4 +119,12 @@ public class StudentCacheBean extends RandomCacheBean {
 		this.securityPhone = securityPhone;
 	}
 
+	public List<String> getStudentCodeList() {
+		return studentCodeList;
+	}
+
+	public void setStudentCodeList(List<String> studentCodeList) {
+		this.studentCodeList = studentCodeList;
+	}
+
 }