package com.ks.lucky.pojo.DO;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class LuckyActivityJoinRecord implements Serializable {
|
|
//真实用户
|
public final static int USER_TYPE_REAL = 1;
|
|
//虚拟用户
|
public final static int USER_TYPE_VIRTUAL = 0;
|
|
private Long id;
|
|
private Long activityId;
|
|
private Long appId;
|
|
private String uid;
|
|
private String joinInfo;
|
|
private Integer userType;
|
|
private Integer weight;
|
|
private Date createTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getActivityId() {
|
return activityId;
|
}
|
|
public void setActivityId(Long activityId) {
|
this.activityId = activityId;
|
}
|
|
public Long getAppId() {
|
return appId;
|
}
|
|
public void setAppId(Long appId) {
|
this.appId = appId;
|
}
|
|
public String getUid() {
|
return uid;
|
}
|
|
public void setUid(String uid) {
|
this.uid = uid == null ? null : uid.trim();
|
}
|
|
public String getJoinInfo() {
|
return joinInfo;
|
}
|
|
public void setJoinInfo(String joinInfo) {
|
this.joinInfo = joinInfo == null ? null : joinInfo.trim();
|
}
|
|
public Integer getUserType() {
|
return userType;
|
}
|
|
public void setUserType(Integer userType) {
|
this.userType = userType;
|
}
|
|
public Integer getWeight() {
|
return weight;
|
}
|
|
public void setWeight(Integer weight) {
|
this.weight = weight;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|