admin
2021-05-28 5965c01b38a2e83cecd7616daa11185fc2499303
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
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;
    }
}