yujian
2020-05-12 81feea14dbcfe3344961a435a37d24630bcbcc43
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
package com.yeshi.fanli.entity.bus.user.vip;
 
import java.util.Date;
 
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.index.Indexed;
import org.springframework.data.mongodb.core.mapping.Document;
import org.springframework.data.mongodb.core.mapping.Field;
 
/**
 * 用户粉丝统计记录-每日
 * 
 * @author Administrator
 *
 */
@Document(collection = "team_daily_Record")
public class TeamDailyRecord {
 
    @Id
    private String id;
    @Field
    @Indexed
    private Long uid;
    @Field
    private Date countDay; // 统计日期: 年-月-日
    @Field
    private String yearMonth; // 统计日期: 年-月
    @Field
    private Integer firstNum; // 一级
    @Field
    private Integer secondNum; // 二级
    @Field
    private Integer beyondNum; // 二级以外
    @Field
    private Integer firstDaRen;
    @Field
    private Integer secondDaRen;
    @Field
    private Integer beyondDaRen;
    @Field
    private Integer firstHighVIP;
    @Field
    private Integer secondHighVIP;
    @Field
    private Integer beyondHighVIP;
    @Field
    private Integer firstSuperVIP;
    @Field
    private Integer secondSuperVIP;
    @Field
    private Integer beyondSuperVIP;
    @Field
    private String updateTime;
    
 
    public TeamDailyRecord() {}
    
    public TeamDailyRecord(Integer firstNum, Integer secondNum, Integer beyondNum) {
        this.firstNum = firstNum;
        this.secondNum = secondNum;
        this.beyondNum = beyondNum;
    }
    
    
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public Date getCountDay() {
        return countDay;
    }
 
    public void setCountDay(Date countDay) {
        this.countDay = countDay;
    }
 
    public String getYearMonth() {
        return yearMonth;
    }
 
    public void setYearMonth(String yearMonth) {
        this.yearMonth = yearMonth;
    }
 
    public Integer getFirstNum() {
        return firstNum;
    }
 
    public void setFirstNum(Integer firstNum) {
        this.firstNum = firstNum;
    }
 
    public Integer getFirstDaRen() {
        return firstDaRen;
    }
 
    public void setFirstDaRen(Integer firstDaRen) {
        this.firstDaRen = firstDaRen;
    }
 
    public Integer getFirstHighVIP() {
        return firstHighVIP;
    }
 
    public void setFirstHighVIP(Integer firstHighVIP) {
        this.firstHighVIP = firstHighVIP;
    }
 
    public Integer getFirstSuperVIP() {
        return firstSuperVIP;
    }
 
    public void setFirstSuperVIP(Integer firstSuperVIP) {
        this.firstSuperVIP = firstSuperVIP;
    }
 
    public Integer getSecondNum() {
        return secondNum;
    }
 
    public void setSecondNum(Integer secondNum) {
        this.secondNum = secondNum;
    }
 
    public Integer getSecondDaRen() {
        return secondDaRen;
    }
 
    public void setSecondDaRen(Integer secondDaRen) {
        this.secondDaRen = secondDaRen;
    }
 
    public Integer getSecondHighVIP() {
        return secondHighVIP;
    }
 
    public void setSecondHighVIP(Integer secondHighVIP) {
        this.secondHighVIP = secondHighVIP;
    }
 
    public Integer getSecondSuperVIP() {
        return secondSuperVIP;
    }
 
    public void setSecondSuperVIP(Integer secondSuperVIP) {
        this.secondSuperVIP = secondSuperVIP;
    }
 
    public Integer getBeyondNum() {
        return beyondNum;
    }
 
    public void setBeyondNum(Integer beyondNum) {
        this.beyondNum = beyondNum;
    }
 
    public Integer getBeyondDaRen() {
        return beyondDaRen;
    }
 
    public void setBeyondDaRen(Integer beyondDaRen) {
        this.beyondDaRen = beyondDaRen;
    }
 
    public Integer getBeyondHighVIP() {
        return beyondHighVIP;
    }
 
    public void setBeyondHighVIP(Integer beyondHighVIP) {
        this.beyondHighVIP = beyondHighVIP;
    }
 
    public Integer getBeyondSuperVIP() {
        return beyondSuperVIP;
    }
 
    public void setBeyondSuperVIP(Integer beyondSuperVIP) {
        this.beyondSuperVIP = beyondSuperVIP;
    }
 
    public String getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(String updateTime) {
        this.updateTime = updateTime;
    }
 
    
}