修复PK倒计时偶尔会提前结束问题(设置倒计时默认值为100解决)

修复PK【开始/结束】不会【隐藏/显示】女神说和联系方式浮窗
This commit is contained in:
2023-04-01 18:29:12 +08:00
parent 95c39cca9d
commit 326bb5ae7f
8 changed files with 101 additions and 31 deletions

View File

@@ -1,5 +1,7 @@
package com.yunbao.common.bean;
import androidx.annotation.NonNull;
import com.alibaba.fastjson.annotation.JSONField;
import com.google.gson.annotations.SerializedName;
@@ -187,6 +189,7 @@ public class BannerBean {
this.mIconRes = mIconRes;
}
@NonNull
@Override
public String toString() {
return "BannerBean{" +
@@ -197,6 +200,12 @@ public class BannerBean {
", mIntoUrl='" + mIntoUrl + '\'' +
", type=" + type +
", name='" + name + '\'' +
", activityId=" + activityId +
", mIconRes=" + mIconRes +
", wishlistIcon='" + wishlistIcon + '\'' +
", wishlistNum='" + wishlistNum + '\'' +
", wishlistProgress='" + wishlistProgress + '\'' +
", wishlistName='" + wishlistName + '\'' +
", model=" + model +
'}';
}