|
@@ -46,6 +46,21 @@ public class OuterSaveExamStudentReq extends BaseRequest {
|
|
@ApiModelProperty(value = "试卷类型,大写字母A-Z", example = "X", required = true)
|
|
@ApiModelProperty(value = "试卷类型,大写字母A-Z", example = "X", required = true)
|
|
private String paperType;
|
|
private String paperType;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "信息采集人", example = "赵飞燕", required = false)
|
|
|
|
+ private String infoCollector;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "专业名称", example = "计算机", required = false)
|
|
|
|
+ private String specialtyName;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "考点", example = "武汉", required = false)
|
|
|
|
+ private String examSite;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "年级", example = "2018", required = false)
|
|
|
|
+ private String grade;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "备注", example = "XX", required = false)
|
|
|
|
+ private String remark;
|
|
|
|
+
|
|
public Long getRootOrgId() {
|
|
public Long getRootOrgId() {
|
|
return rootOrgId;
|
|
return rootOrgId;
|
|
}
|
|
}
|
|
@@ -126,4 +141,44 @@ public class OuterSaveExamStudentReq extends BaseRequest {
|
|
this.paperType = paperType;
|
|
this.paperType = paperType;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getInfoCollector() {
|
|
|
|
+ return infoCollector;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setInfoCollector(String infoCollector) {
|
|
|
|
+ this.infoCollector = infoCollector;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getSpecialtyName() {
|
|
|
|
+ return specialtyName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSpecialtyName(String specialtyName) {
|
|
|
|
+ this.specialtyName = specialtyName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getExamSite() {
|
|
|
|
+ return examSite;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamSite(String examSite) {
|
|
|
|
+ this.examSite = examSite;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getGrade() {
|
|
|
|
+ return grade;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setGrade(String grade) {
|
|
|
|
+ this.grade = grade;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getRemark() {
|
|
|
|
+ return remark;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setRemark(String remark) {
|
|
|
|
+ this.remark = remark;
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|