admin
2021-02-06 6c09cbd70388ae53ec593de253f69cfa1a3eeda7
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
package com.ks.lucky.pojo.DTO;
 
import com.ks.lucky.pojo.DO.BaseUser;
 
public class ActivityJoinerRankInfo extends BaseUser {
    //排名顺序
    private int rank;
    //权重
    private int weight;
 
    public int getRank() {
        return rank;
    }
 
    public void setRank(int rank) {
        this.rank = rank;
    }
 
    public int getWeight() {
        return weight;
    }
 
    public void setWeight(int weight) {
        this.weight = weight;
    }
}