|
@@ -44,6 +44,10 @@ public class TeachStudent extends BaseEntity implements Serializable {
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long userId;
|
|
|
|
|
|
+ @ApiModelProperty(value = "学生所在校区(冗余)")
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long campusId;
|
|
|
+
|
|
|
public Long getSchoolId() {
|
|
|
return schoolId;
|
|
|
}
|
|
@@ -99,4 +103,12 @@ public class TeachStudent extends BaseEntity implements Serializable {
|
|
|
public void setUserId(Long userId) {
|
|
|
this.userId = userId;
|
|
|
}
|
|
|
+
|
|
|
+ public Long getCampusId() {
|
|
|
+ return campusId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCampusId(Long campusId) {
|
|
|
+ this.campusId = campusId;
|
|
|
+ }
|
|
|
}
|