|
@@ -15,6 +15,8 @@ import java.util.Date;
|
|
|
*/
|
|
|
@ApiModel(value = "TeacherHomeVo对象", description = "老师主页基本信息返回")
|
|
|
public class TeacherHomeVo {
|
|
|
+ @ApiModelProperty("对应user表用户编号")
|
|
|
+ private Long userId;
|
|
|
@ApiModelProperty("头像地址")
|
|
|
private String heardUrl;
|
|
|
@ApiModelProperty("老师姓名")
|
|
@@ -34,6 +36,14 @@ public class TeacherHomeVo {
|
|
|
@ApiModelProperty("是否有直播权限 0 否 1 是")
|
|
|
private Integer liveFlag;
|
|
|
|
|
|
+ public Long getUserId() {
|
|
|
+ return userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserId(Long userId) {
|
|
|
+ this.userId = userId;
|
|
|
+ }
|
|
|
+
|
|
|
public String getHeardUrl() {
|
|
|
return heardUrl;
|
|
|
}
|