admin
2021-01-15 5405154d6979f1b50ce2d881bb164b1acca80b6d
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
package com.ks.lucky.pojo.DTO;
 
import java.io.Serializable;
 
/**
 * 活动参与统计信息
 */
public class ActivityJoinStatisticInfo implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    private Long activityId;
    private Integer myPosition;
    private Integer totalJoiner;
 
 
 
 
    public Long getActivityId() {
        return activityId;
    }
 
    public void setActivityId(Long activityId) {
        this.activityId = activityId;
    }
 
    public Integer getMyPosition() {
        return myPosition;
    }
 
    public void setMyPosition(Integer myPosition) {
        this.myPosition = myPosition;
    }
 
    public Integer getTotalJoiner() {
        return totalJoiner;
    }
 
    public void setTotalJoiner(Integer totalJoiner) {
        this.totalJoiner = totalJoiner;
    }
}