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