|
@@ -4,15 +4,22 @@ import java.util.List;
|
|
|
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.EnterpriseRequest;
|
|
import cn.com.qmth.examcloud.api.commons.exchange.EnterpriseRequest;
|
|
import cn.com.qmth.examcloud.exchange.outer.api.bean.OuterExamStudentBean4Reset;
|
|
import cn.com.qmth.examcloud.exchange.outer.api.bean.OuterExamStudentBean4Reset;
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
public class OuterResetExamStudentReq extends EnterpriseRequest {
|
|
public class OuterResetExamStudentReq extends EnterpriseRequest {
|
|
|
|
|
|
private static final long serialVersionUID = 3633974018347041831L;
|
|
private static final long serialVersionUID = 3633974018347041831L;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "顶级机构", example = "0", required = true)
|
|
private Long rootOrgId;
|
|
private Long rootOrgId;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "考试ID", example = "100", required = false)
|
|
private Long examId;
|
|
private Long examId;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "考试名称", example = "2018年秋季入学考试", required = false)
|
|
|
|
+ private String examName;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "考试编码", example = "2018年秋季入学考试", required = false)
|
|
private String examCode;
|
|
private String examCode;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -32,6 +39,14 @@ public class OuterResetExamStudentReq extends EnterpriseRequest {
|
|
|
|
|
|
private List<OuterExamStudentBean4Reset> examStudentList;
|
|
private List<OuterExamStudentBean4Reset> examStudentList;
|
|
|
|
|
|
|
|
+ public String getExamName() {
|
|
|
|
+ return examName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamName(String examName) {
|
|
|
|
+ this.examName = examName;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Long getRootOrgId() {
|
|
public Long getRootOrgId() {
|
|
return rootOrgId;
|
|
return rootOrgId;
|
|
}
|
|
}
|