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
| package com.ks.daylucky.pojo.VO;
|
| public class ActivityJoinerRankInfoVO {
|
| private SimpleUser user;
| //排名顺序
| private int rank;
| //权重
| private int count;
|
|
| public ActivityJoinerRankInfoVO(SimpleUser user, int rank, int count) {
| this.user = user;
| this.rank = rank;
| this.count = count;
| }
|
| public SimpleUser getUser() {
| return user;
| }
|
| public void setUser(SimpleUser user) {
| this.user = user;
| }
|
| public int getRank() {
| return rank;
| }
|
| public void setRank(int rank) {
| this.rank = rank;
| }
|
| public int getCount() {
| return count;
| }
|
| public void setCount(int count) {
| this.count = count;
| }
| }
|
|