package com.ks.lucky.pojo.DO;
|
|
import java.util.Date;
|
|
public class LuckyActivityAwards {
|
private Long id;
|
|
private Long activityId;
|
|
private Integer level;
|
|
private Integer count;
|
|
private Integer awardWay;
|
|
private String awardParams;
|
|
private String materialId;
|
|
private String remarks;
|
|
private Date createTime;
|
|
private Date updateTime;
|
|
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 Integer getLevel() {
|
return level;
|
}
|
|
public void setLevel(Integer level) {
|
this.level = level;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public Integer getAwardWay() {
|
return awardWay;
|
}
|
|
public void setAwardWay(Integer awardWay) {
|
this.awardWay = awardWay;
|
}
|
|
public String getAwardParams() {
|
return awardParams;
|
}
|
|
public void setAwardParams(String awardParams) {
|
this.awardParams = awardParams == null ? null : awardParams.trim();
|
}
|
|
public String getMaterialId() {
|
return materialId;
|
}
|
|
public void setMaterialId(String materialId) {
|
this.materialId = materialId == null ? null : materialId.trim();
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks == null ? null : remarks.trim();
|
}
|
|
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;
|
}
|
}
|