package com.ks.lucky.pojo.DO;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class LuckyActivityJoinAssist implements Serializable {
|
|
private Long id;
|
|
private Long joinId;
|
|
private Long appId;
|
|
private String uid;
|
|
private Integer weight;
|
|
private ActivityJoinAssistEvent eventKey;
|
|
private Date createTime;
|
|
private Date updateTime;
|
|
public ActivityJoinAssistEvent getEventKey() {
|
return eventKey;
|
}
|
|
public void setEventKey(ActivityJoinAssistEvent eventKey) {
|
this.eventKey = eventKey;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getJoinId() {
|
return joinId;
|
}
|
|
public void setJoinId(Long joinId) {
|
this.joinId = joinId;
|
}
|
|
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 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;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|