修复:上下滑动直播间,Pk头像展示在不PK得房间的情况
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user