修复:

侧边栏问题
This commit is contained in:
18401019693
2022-08-26 09:52:04 +08:00
parent da19811ad4
commit b3500b94c0
9 changed files with 115 additions and 60 deletions

View File

@@ -22,6 +22,17 @@ public class AnchorRecommendModel extends BaseModel {
private int upShow = 0;
@SerializedName("list")
private List<AnchorRecommendItemModel> list = new ArrayList<>();
@SerializedName("slide")
private List<SlideInfoModel> slide = new ArrayList<>();
public List<SlideInfoModel> getSlide() {
return slide;
}
public AnchorRecommendModel setSlide(List<SlideInfoModel> slide) {
this.slide = slide;
return this;
}
public int getListShow() {
return listShow;