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;
|
}
|
}
|