新增幸运女神通知

This commit is contained in:
2022-10-26 11:33:32 +08:00
parent 2eba951ad1
commit c83db0ec77
11 changed files with 94 additions and 16 deletions

View File

@@ -181,6 +181,7 @@ public class Constants {
public static final String SOCKET_USEHOTCARD = "UseHotCard";//热度卡消息
public static final String LOVE_CHECK = "LoveCheck";//热度卡消息
public static final String TRUMPET_NOTIFY = "TrumpetNotify";//全栈喇叭
public static final String LuckyAngel = "LuckyCheck";//幸运天使
public static final int SOCKET_WHAT_CONN = 0;
public static final int SOCKET_WHAT_DISCONN = 2;

View File

@@ -323,4 +323,28 @@ public class MsgModel extends BaseModel {
public void setLiveUid(String liveUid) {
this.liveUid = liveUid;
}
/**
* 幸运天使
*/
@SerializedName("gift_name")
private String giftName;
@SerializedName("system_bubble")
private String system_bubble;
public String getGiftName() {
return giftName;
}
public void setGiftName(String giftName) {
this.giftName = giftName;
}
public String getSystem_bubble() {
return system_bubble;
}
public void setSystem_bubble(String system_bubble) {
this.system_bubble = system_bubble;
}
}