新增H5进入房间打开礼物面板方法

This commit is contained in:
huangjian
2022-08-02 11:09:41 +08:00
parent 37a09ae941
commit 4ca1b0c980
5 changed files with 146 additions and 33 deletions

View File

@@ -1,5 +1,14 @@
package com.yizhuan.xchat_android_core.room.anotherroompk;
public class ShowGiftDialogEvent {
private int giftId;
public int getGiftId() {
return giftId;
}
public ShowGiftDialogEvent setGiftId(int giftId) {
this.giftId = giftId;
return this;
}
}