|
@@ -24,6 +24,9 @@ public class ImLiveBroadcastRoomMemberVo implements java.io.Serializable {
|
|
|
@ApiModelProperty(value = "学生编号")
|
|
|
private Integer studentId;
|
|
|
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学生编号")
|
|
|
+ private String imUserId;
|
|
|
@ApiModelProperty(value = "学生姓名")
|
|
|
private String studentName;
|
|
|
|
|
@@ -76,6 +79,14 @@ public class ImLiveBroadcastRoomMemberVo implements java.io.Serializable {
|
|
|
return JSON.parseObject(JSON.toJSONString(memberVo), ImLiveBroadcastRoomSimpleMemberVo.class);
|
|
|
}
|
|
|
|
|
|
+ public String getImUserId() {
|
|
|
+ return imUserId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setImUserId(String imUserId) {
|
|
|
+ this.imUserId = imUserId;
|
|
|
+ }
|
|
|
+
|
|
|
public ImLiveBroadcastRoomMemberVo roomTitle(String roomTitle) {
|
|
|
this.roomTitle = roomTitle;
|
|
|
return this;
|