|
@@ -1,6 +1,5 @@
|
|
|
package com.ym.mec.biz.dal.vo;
|
|
|
|
|
|
-
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
@@ -80,6 +79,12 @@ public class ImLiveBroadcastRoomVo implements Serializable {
|
|
|
@ApiModelProperty(value = "当前登录人是否是黑名单用户 0否 1是")
|
|
|
private Integer blacklistFlag = 0;
|
|
|
|
|
|
+ @ApiModelProperty(value = "分部id-多个id逗号分割")
|
|
|
+ private String popularizeOrgIds;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学校id-合作单位id,多个id逗号分割")
|
|
|
+ private String popularizeSchoolIds;
|
|
|
+
|
|
|
@ApiModelProperty(value = "点赞数")
|
|
|
private Integer likeNum;
|
|
|
@ApiModelProperty(value = "当前观看人数")
|
|
@@ -295,5 +300,21 @@ public class ImLiveBroadcastRoomVo implements Serializable {
|
|
|
public void setRoomReservationNum(Integer roomReservationNum) {
|
|
|
this.roomReservationNum = roomReservationNum;
|
|
|
}
|
|
|
+
|
|
|
+ public String getPopularizeOrgIds() {
|
|
|
+ return popularizeOrgIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPopularizeOrgIds(String popularizeOrgIds) {
|
|
|
+ this.popularizeOrgIds = popularizeOrgIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPopularizeSchoolIds() {
|
|
|
+ return popularizeSchoolIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPopularizeSchoolIds(String popularizeSchoolIds) {
|
|
|
+ this.popularizeSchoolIds = popularizeSchoolIds;
|
|
|
+ }
|
|
|
}
|
|
|
|