WANG пре 6 година
родитељ
комит
a2bc334b16

+ 26 - 0
examcloud-core-basic-api/src/main/java/cn/com/qmth/examcloud/core/basic/api/request/GetStudentReq.java

@@ -21,6 +21,16 @@ public class GetStudentReq extends BaseRequest {
 	 */
 	private String identityNumber;
 
+	/**
+	 * 安全手机号码(用于登录)
+	 */
+	private String securityPhone;
+
+	/**
+	 * 学生code
+	 */
+	private String studentCode;
+
 	public Long getRootOrgId() {
 		return rootOrgId;
 	}
@@ -45,4 +55,20 @@ public class GetStudentReq extends BaseRequest {
 		this.identityNumber = identityNumber;
 	}
 
+	public String getSecurityPhone() {
+		return securityPhone;
+	}
+
+	public void setSecurityPhone(String securityPhone) {
+		this.securityPhone = securityPhone;
+	}
+
+	public String getStudentCode() {
+		return studentCode;
+	}
+
+	public void setStudentCode(String studentCode) {
+		this.studentCode = studentCode;
+	}
+
 }