|
@@ -24,17 +24,9 @@ public class BasicStudentResult {
|
|
@ApiModelProperty(value = "学生电话")
|
|
@ApiModelProperty(value = "学生电话")
|
|
private String phoneNumber;
|
|
private String phoneNumber;
|
|
|
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
- @ApiModelProperty(value = "学院id")
|
|
|
|
- private Long collegeId;
|
|
|
|
-
|
|
|
|
@ApiModelProperty(value = "学院名称")
|
|
@ApiModelProperty(value = "学院名称")
|
|
private String collegeName;
|
|
private String collegeName;
|
|
|
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
- @ApiModelProperty(value = "专业id")
|
|
|
|
- private Long majorId;
|
|
|
|
-
|
|
|
|
@ApiModelProperty(value = "专业名称")
|
|
@ApiModelProperty(value = "专业名称")
|
|
private String majorName;
|
|
private String majorName;
|
|
|
|
|
|
@@ -87,14 +79,6 @@ public class BasicStudentResult {
|
|
this.phoneNumber = phoneNumber;
|
|
this.phoneNumber = phoneNumber;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getCollegeId() {
|
|
|
|
- return collegeId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCollegeId(Long collegeId) {
|
|
|
|
- this.collegeId = collegeId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public String getCollegeName() {
|
|
public String getCollegeName() {
|
|
return collegeName;
|
|
return collegeName;
|
|
}
|
|
}
|
|
@@ -103,14 +87,6 @@ public class BasicStudentResult {
|
|
this.collegeName = collegeName;
|
|
this.collegeName = collegeName;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getMajorId() {
|
|
|
|
- return majorId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setMajorId(Long majorId) {
|
|
|
|
- this.majorId = majorId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public String getMajorName() {
|
|
public String getMajorName() {
|
|
return majorName;
|
|
return majorName;
|
|
}
|
|
}
|