admin
2020-12-31 74196bcc835d9b76cdd1bc3d85b0dfbe0191fc00
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.lucky.pojo.DTO;
 
import com.ks.lucky.pojo.DO.ActivityJoinAssistEvent;
import com.ks.lucky.pojo.DO.BaseUser;
 
import java.util.List;
 
/**
 * 活动好友的助力信息
 */
public class ActivityFriendAssistInfo extends BaseUser {
 
    private Long joinerId;
    private int weight;
    private List<ActivityJoinAssistEvent> eventList;
 
 
    public Long getJoinerId() {
        return joinerId;
    }
 
    public void setJoinerId(Long joinerId) {
        this.joinerId = joinerId;
    }
 
    public int getWeight() {
        return weight;
    }
 
    public void setWeight(int weight) {
        this.weight = weight;
    }
 
    public List<ActivityJoinAssistEvent> getEventList() {
        return eventList;
    }
 
    public void setEventList(List<ActivityJoinAssistEvent> eventList) {
        this.eventList = eventList;
    }
}