直播标识类型修改

pull/371/head
wuyibo 3 years ago
parent 26afd482ad
commit 9257f85200

@ -81,7 +81,7 @@ public class WxBuildingInfo extends BaseEntity
/** 是否支持在线 */ /** 是否支持在线 */
@Excel(name = "支持在线") @Excel(name = "支持在线")
private Boolean isSupportlive; private Integer isSupportlive;
/** 球馆状态 */ /** 球馆状态 */
@Excel(name = "球馆状态") @Excel(name = "球馆状态")
@ -246,12 +246,12 @@ public class WxBuildingInfo extends BaseEntity
{ {
return defaultPicture; return defaultPicture;
} }
public void setIsSupportlive(Boolean isSupportlive) public void setIsSupportlive(Integer isSupportlive)
{ {
this.isSupportlive = isSupportlive; this.isSupportlive = isSupportlive;
} }
public Boolean getIsSupportlive() public Integer getIsSupportlive()
{ {
return isSupportlive; return isSupportlive;
} }

Loading…
Cancel
Save