|
@@ -5,4 +5,44 @@ import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
public class UpdateStudentStatusReq extends BaseRequest {
|
|
public class UpdateStudentStatusReq extends BaseRequest {
|
|
private static final long serialVersionUID = -3300491605950827319L;
|
|
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;
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|