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