心愿单修改,

This commit is contained in:
18401019693
2023-04-07 15:28:19 +08:00
parent 16caf60f77
commit 9d38ff7c8f
13 changed files with 664 additions and 34 deletions

View File

@@ -76,7 +76,7 @@ public class Constants {
public static final String PAY_BUY_COIN_ALI = "Charge.getAliOrder";
public static final String PAY_BUY_COIN_WX = "Charge.getWxOrder";
// public static final String PACKAGE_NAME_ALI = "com.eg.android.AlipayGphone";//支付宝的包名
// public static final String PACKAGE_NAME_ALI = "com.eg.android.AlipayGphone";//支付宝的包名
public static final String PACKAGE_NAME_WX = "com.tencent.mm";//微信的包名
public static final String PACKAGE_NAME_QQ = "com.tencent.mobileqq";//QQ的包名
public static final String LAT = "lat";
@@ -133,7 +133,7 @@ public class Constants {
public static final int LIVE_FUNC_WKS = 2014;//語音
public static final int LIVE_FUNC_ZSLK = 2015;//語音
public static final int LIVE_FUNC_RANDOM_PK = 2016;//随机PK
public static final int LIVE_ROBOT= 2017;//机器人
public static final int LIVE_ROBOT = 2017;//机器人
//socket
public static final String SOCKET_CONN = "conn";
@@ -177,6 +177,8 @@ public class Constants {
public static final String SUPER_VISION = "supervision";//超级发言警告
public static final String PK_RANK_UPDATE = "RankingRankUpdate";//PK排位赛更新数据
public static final String CUSTOM_FULL_SERVICE_NOTIFY = "customFullServiceNotify";//全服通知
public static final String XYD_COMPLETE = "XydComplete";//心愿单完成通知
public static final String WISH_LIST_PROGRESS = "wishListProgress";//心愿单进度通知
//游戏socket
public static final String SOCKET_GAME_ZJH = "startGame";//炸金花

View File

@@ -0,0 +1,328 @@
package com.yunbao.common.bean;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
public class XydCompleteModel extends BaseModel {
@SerializedName("_method_")
private String method;
@SerializedName("action")
private String action;
@SerializedName("msgtype")
private String msgtype;
@SerializedName("level")
private int level;
@SerializedName("uname")
private String uname;
@SerializedName("uid")
private String uid;
@SerializedName("uhead")
private String uhead;
@SerializedName("evensend")
private String evensend;
@SerializedName("liangname")
private String liangname;
@SerializedName("vip_type")
private String vipType;
@SerializedName("svg")
private String svg;
@SerializedName("ancherName")
private String ancherName;
@SerializedName("userName")
private String userName;
@SerializedName("medal_name")
private String medalName;
@SerializedName("medal_level")
private String medalLevel;
@SerializedName("guard_type")
private String guardType;
@SerializedName("medal")
private String medal;
@SerializedName("medal_honor")
private String medalHonor;
@SerializedName("good_num")
private int goodNum;
@SerializedName("roomnum")
private String roomnum;
@SerializedName("msg")
private String msg;
@SerializedName("liveId")
private String liveId;
@SerializedName("swf")
private String swf;
@SerializedName("swftime")
private String swftime;
@SerializedName("swftype")
private int swftype;
@SerializedName("type")
private int type;
@SerializedName("giftname")
private String giftname;
@SerializedName("equipment")
private String equipment;
@SerializedName("bubble")
private String bubble;
public String getMethod() {
return method;
}
public XydCompleteModel setMethod(String method) {
this.method = method;
return this;
}
public String getAction() {
return action;
}
public XydCompleteModel setAction(String action) {
this.action = action;
return this;
}
public String getMsgtype() {
return msgtype;
}
public XydCompleteModel setMsgtype(String msgtype) {
this.msgtype = msgtype;
return this;
}
public int getLevel() {
return level;
}
public XydCompleteModel setLevel(int level) {
this.level = level;
return this;
}
public String getUname() {
return uname;
}
public XydCompleteModel setUname(String uname) {
this.uname = uname;
return this;
}
public String getUid() {
return uid;
}
public XydCompleteModel setUid(String uid) {
this.uid = uid;
return this;
}
public String getUhead() {
return uhead;
}
public XydCompleteModel setUhead(String uhead) {
this.uhead = uhead;
return this;
}
public String getEvensend() {
return evensend;
}
public XydCompleteModel setEvensend(String evensend) {
this.evensend = evensend;
return this;
}
public String getLiangname() {
return liangname;
}
public XydCompleteModel setLiangname(String liangname) {
this.liangname = liangname;
return this;
}
public String getVipType() {
return vipType;
}
public XydCompleteModel setVipType(String vipType) {
this.vipType = vipType;
return this;
}
public String getSvg() {
return svg;
}
public XydCompleteModel setSvg(String svg) {
this.svg = svg;
return this;
}
public String getAncherName() {
return ancherName;
}
public XydCompleteModel setAncherName(String ancherName) {
this.ancherName = ancherName;
return this;
}
public String getUserName() {
return userName;
}
public XydCompleteModel setUserName(String userName) {
this.userName = userName;
return this;
}
public String getMedalName() {
return medalName;
}
public XydCompleteModel setMedalName(String medalName) {
this.medalName = medalName;
return this;
}
public String getMedalLevel() {
return medalLevel;
}
public XydCompleteModel setMedalLevel(String medalLevel) {
this.medalLevel = medalLevel;
return this;
}
public String getGuardType() {
return guardType;
}
public XydCompleteModel setGuardType(String guardType) {
this.guardType = guardType;
return this;
}
public String getMedal() {
return medal;
}
public XydCompleteModel setMedal(String medal) {
this.medal = medal;
return this;
}
public String getMedalHonor() {
return medalHonor;
}
public XydCompleteModel setMedalHonor(String medalHonor) {
this.medalHonor = medalHonor;
return this;
}
public int getGoodNum() {
return goodNum;
}
public XydCompleteModel setGoodNum(int goodNum) {
this.goodNum = goodNum;
return this;
}
public String getRoomnum() {
return roomnum;
}
public XydCompleteModel setRoomnum(String roomnum) {
this.roomnum = roomnum;
return this;
}
public String getMsg() {
return msg;
}
public XydCompleteModel setMsg(String msg) {
this.msg = msg;
return this;
}
public String getLiveId() {
return liveId;
}
public XydCompleteModel setLiveId(String liveId) {
this.liveId = liveId;
return this;
}
public String getSwf() {
return swf;
}
public XydCompleteModel setSwf(String swf) {
this.swf = swf;
return this;
}
public String getSwftime() {
return swftime;
}
public XydCompleteModel setSwftime(String swftime) {
this.swftime = swftime;
return this;
}
public int getSwftype() {
return swftype;
}
public XydCompleteModel setSwftype(int swftype) {
this.swftype = swftype;
return this;
}
public int getType() {
return type;
}
public XydCompleteModel setType(int type) {
this.type = type;
return this;
}
public String getGiftname() {
return giftname;
}
public XydCompleteModel setGiftname(String giftname) {
this.giftname = giftname;
return this;
}
public String getEquipment() {
return equipment;
}
public XydCompleteModel setEquipment(String equipment) {
this.equipment = equipment;
return this;
}
public String getBubble() {
return bubble;
}
public XydCompleteModel setBubble(String bubble) {
this.bubble = bubble;
return this;
}
}