fix:直播间侧边推荐banner点击跳转后未打开新人签到对话框

This commit is contained in:
2022-10-18 18:24:19 +08:00
parent 80f23f4cc3
commit 99d32c03b2
2 changed files with 20 additions and 3 deletions

View File

@@ -15,6 +15,8 @@ public class SlideInfoModel extends BaseModel {
private String slidePic = "";
@SerializedName("slide_url")
private String slideUrl = "";
@SerializedName("type")
private int type;
public String getSlidePic() {
return slidePic;
@@ -33,4 +35,12 @@ public class SlideInfoModel extends BaseModel {
this.slideUrl = slideUrl;
return this;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
}