新增幸运女神通知

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;
}
}

View File

@@ -946,4 +946,5 @@
<string name="in_batch">換一批</string>
<string name="chat_chat">聊聊天</string>
<string name="want_pre">想在其他APP上方也顯示小窗\n可前往設置進行授權。</string>
<string name="lucky_angel" translatable="false">恭喜 %s 在幸運天使中抽中 %s下一個幸運天使就是你哦</string>
</resources>