修复一处闪退问题

This commit is contained in:
2022-10-22 09:48:18 +08:00
parent e0a398a9fd
commit f51237f04a
3 changed files with 27 additions and 3 deletions

View File

@@ -173,4 +173,26 @@ public class LiveGiftBean {
public void setGiftNum(String giftNum) {
this.mGiftNum = giftNum;
}
@Override
public String toString() {
return "LiveGiftBean{" +
"id=" + id +
", type=" + type +
", mark=" + mark +
", name='" + name + '\'' +
", price='" + price + '\'' +
", icon='" + icon + '\'' +
", checked=" + checked +
", page=" + page +
", mView=" + mView +
", sendType='" + sendType + '\'' +
", mGiftNum='" + mGiftNum + '\'' +
", num='" + num + '\'' +
", swf='" + swf + '\'' +
", isweek='" + isweek + '\'' +
", end_time='" + end_time + '\'' +
", tag='" + tag + '\'' +
'}';
}
}