修复:上下滑动直播间,Pk头像展示在不PK得房间的情况

This commit is contained in:
18401019693
2022-12-13 16:56:06 +08:00
parent b804c20ba0
commit d1e1f5f4e8
4 changed files with 56 additions and 57 deletions

View File

@@ -10,6 +10,20 @@ public class CoinChangeEvent {
private String coin;
private String goldCoinNum;
private boolean chargeSuccess;
//重置头像
private boolean resetProfilePicture = false;
public boolean isResetProfilePicture() {
return resetProfilePicture;
}
public CoinChangeEvent() {
}
public CoinChangeEvent setResetProfilePicture(boolean resetProfilePicture) {
this.resetProfilePicture = resetProfilePicture;
return this;
}
public CoinChangeEvent(String coin) {
this.coin = coin;
@@ -19,7 +33,8 @@ public class CoinChangeEvent {
this.coin = coin;
this.chargeSuccess = chargeSuccess;
}
public CoinChangeEvent(String coin,String goldCoinNum, boolean chargeSuccess) {
public CoinChangeEvent(String coin, String goldCoinNum, boolean chargeSuccess) {
this.coin = coin;
this.goldCoinNum = goldCoinNum;
this.chargeSuccess = chargeSuccess;