WANG 5 年之前
父節點
當前提交
0b4d89811c
共有 1 個文件被更改,包括 15 次插入0 次删除
  1. 15 0
      src/main/java/cn/com/qmth/examcloud/support/cache/bean/StudentCacheBean.java

+ 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;
+	}
+
 }