调整天梯排位赛UI位置

新增排位赛轮播点击事件
This commit is contained in:
2022-11-16 16:31:48 +08:00
parent a4ab6df974
commit a664ff7464
4 changed files with 46 additions and 6 deletions

View File

@@ -19,6 +19,8 @@ public class PkRankBean extends BaseModel {
public String blueVal;
@SerializedName("pktt_img")
public String pkTopImgUrl;
@SerializedName("link")
public String clickUrl;
public int getId() {
return id;
@@ -74,6 +76,14 @@ public class PkRankBean extends BaseModel {
this.pkTopImgUrl = pkTopImgUrl;
}
public String getClickUrl() {
return clickUrl;
}
public void setClickUrl(String clickUrl) {
this.clickUrl = clickUrl;
}
@Override
public String toString() {
return "PkRankBean{" +
@@ -83,6 +93,7 @@ public class PkRankBean extends BaseModel {
", redVal='" + redVal + '\'' +
", blueVal='" + blueVal + '\'' +
", pkTopImgUrl='" + pkTopImgUrl + '\'' +
", clickUrl='" + clickUrl + '\'' +
'}';
}
}