调整Banner点击事件

This commit is contained in:
2022-10-26 17:26:26 +08:00
parent 38d2e0df57
commit 9c629937da
2 changed files with 51 additions and 2 deletions

View File

@@ -14,6 +14,7 @@ public class BannerBean {
private String show_type;
private String mIntoUrl;
private int type;
private String name;
private StarChallengeStatusModel model;
@@ -81,6 +82,14 @@ public class BannerBean {
public void setType(int type) {
this.type = type;
}
@JSONField(name = "name")
public String getName() {
return name;
}
@JSONField(name = "name")
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
@@ -91,6 +100,7 @@ public class BannerBean {
", show_type='" + show_type + '\'' +
", mIntoUrl='" + mIntoUrl + '\'' +
", type=" + type +
", name='" + name + '\'' +
", model=" + model +
'}';
}