package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
public class InvitePlayer implements Serializable {
|
|
@Expose
|
private String inviteId;
|
@Expose
|
private String inviteTime;
|
@Expose
|
private String workerId;
|
@Expose
|
private String portrait;
|
@Expose
|
private int state;
|
@Expose
|
private List<TextColor> recentMsg;
|
@Expose
|
private String nickName;
|
@Expose
|
private String memoName;
|
@Expose
|
private List<TextColor> vipBreakTime;//关系断开时间
|
@Expose
|
private String level;
|
@Expose
|
private Boolean validFans;
|
@Expose
|
private List<String> vipBreakTip;//关系快要解除提示
|
|
|
private String weiXin;
|
private String weiXinTip;
|
private int weiXinState;
|
|
public String getWeiXin() {
|
return weiXin;
|
}
|
|
public void setWeiXin(String weiXin) {
|
this.weiXin = weiXin;
|
}
|
|
public String getWeiXinTip() {
|
return weiXinTip;
|
}
|
|
public void setWeiXinTip(String weiXinTip) {
|
this.weiXinTip = weiXinTip;
|
}
|
|
public int getWeiXinState() {
|
return weiXinState;
|
}
|
|
public void setWeiXinState(int weiXinState) {
|
this.weiXinState = weiXinState;
|
}
|
|
public String getInviteId() {
|
return inviteId;
|
}
|
|
public void setInviteId(String inviteId) {
|
this.inviteId = inviteId;
|
}
|
|
public String getInviteTime() {
|
return inviteTime;
|
}
|
|
public void setInviteTime(String inviteTime) {
|
this.inviteTime = inviteTime;
|
}
|
|
public String getWorkerId() {
|
return workerId;
|
}
|
|
public void setWorkerId(String workerId) {
|
this.workerId = workerId;
|
}
|
|
public String getPortrait() {
|
return portrait;
|
}
|
|
public void setPortrait(String portrait) {
|
this.portrait = portrait;
|
}
|
|
public int getState() {
|
return state;
|
}
|
|
public void setState(int state) {
|
this.state = state;
|
}
|
|
public List<TextColor> getRecentMsg() {
|
return recentMsg;
|
}
|
|
public void setRecentMsg(List<TextColor> recentMsg) {
|
this.recentMsg = recentMsg;
|
}
|
|
public String getNickName() {
|
return nickName;
|
}
|
|
public void setNickName(String nickName) {
|
this.nickName = nickName;
|
}
|
|
public String getMemoName() {
|
return memoName;
|
}
|
|
public void setMemoName(String memoName) {
|
this.memoName = memoName;
|
}
|
|
public String getLevel() {
|
return level;
|
}
|
|
public void setLevel(String level) {
|
this.level = level;
|
}
|
|
public Boolean getValidFans() {
|
return validFans;
|
}
|
|
public void setValidFans(Boolean validFans) {
|
this.validFans = validFans;
|
}
|
|
public List<String> getVipBreakTip() {
|
return vipBreakTip;
|
}
|
|
public void setVipBreakTip(List<String> vipBreakTip) {
|
this.vipBreakTip = vipBreakTip;
|
}
|
|
|
public List<TextColor> getVipBreakTime() {
|
return vipBreakTime;
|
}
|
|
public void setVipBreakTime(List<TextColor> vipBreakTime) {
|
this.vipBreakTime = vipBreakTime;
|
}
|
}
|