|
@@ -123,6 +123,14 @@ public class ImLiveBroadcastRoom implements Serializable {
|
|
|
@ApiModelProperty("购物车标题")
|
|
|
private String shoppingTitle;
|
|
|
|
|
|
+ @TableField("group_type_")
|
|
|
+ @ApiModelProperty("直播间类型")
|
|
|
+ private String groupType;
|
|
|
+
|
|
|
+ @TableField("subject_id_")
|
|
|
+ @ApiModelProperty("声部编号")
|
|
|
+ private String subjectId;
|
|
|
+
|
|
|
@TableField("created_by_")
|
|
|
@ApiModelProperty(value = "创建人")
|
|
|
private Integer createdBy;
|
|
@@ -383,5 +391,21 @@ public class ImLiveBroadcastRoom implements Serializable {
|
|
|
public void setShoppingTitle(String shoppingTitle) {
|
|
|
this.shoppingTitle = shoppingTitle;
|
|
|
}
|
|
|
+
|
|
|
+ public String getGroupType() {
|
|
|
+ return groupType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGroupType(String groupType) {
|
|
|
+ this.groupType = groupType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSubjectId() {
|
|
|
+ return subjectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectId(String subjectId) {
|
|
|
+ this.subjectId = subjectId;
|
|
|
+ }
|
|
|
}
|
|
|
|