WANG 6 年 前
コミット
c4753dd76f

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

@@ -6,4 +6,44 @@ public class UpdatePasswordReq extends BaseRequest {
 
 	private static final long serialVersionUID = 1003594551453376759L;
 
+	private Long rootOrgId;
+
+	private Long studentId;
+
+	private String identityNumber;
+
+	private String password;
+
+	public Long getRootOrgId() {
+		return rootOrgId;
+	}
+
+	public void setRootOrgId(Long rootOrgId) {
+		this.rootOrgId = rootOrgId;
+	}
+
+	public Long getStudentId() {
+		return studentId;
+	}
+
+	public void setStudentId(Long studentId) {
+		this.studentId = studentId;
+	}
+
+	public String getIdentityNumber() {
+		return identityNumber;
+	}
+
+	public void setIdentityNumber(String identityNumber) {
+		this.identityNumber = identityNumber;
+	}
+
+	public String getPassword() {
+		return password;
+	}
+
+	public void setPassword(String password) {
+		this.password = password;
+	}
+
 }

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

@@ -5,4 +5,44 @@ import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
 public class UpdateStudentStatusReq extends BaseRequest {
 	private static final long serialVersionUID = -3300491605950827319L;
 
+	private Long rootOrgId;
+
+	private Long studentId;
+
+	private String identityNumber;
+
+	private Boolean enable;
+
+	public Long getRootOrgId() {
+		return rootOrgId;
+	}
+
+	public void setRootOrgId(Long rootOrgId) {
+		this.rootOrgId = rootOrgId;
+	}
+
+	public Long getStudentId() {
+		return studentId;
+	}
+
+	public void setStudentId(Long studentId) {
+		this.studentId = studentId;
+	}
+
+	public String getIdentityNumber() {
+		return identityNumber;
+	}
+
+	public void setIdentityNumber(String identityNumber) {
+		this.identityNumber = identityNumber;
+	}
+
+	public Boolean getEnable() {
+		return enable;
+	}
+
+	public void setEnable(Boolean enable) {
+		this.enable = enable;
+	}
+
 }