package com.ks.lucky.pojo.DO;
|
|
import java.util.Date;
|
|
public class LuckyActivitySponsorInfo {
|
private Long id;
|
|
private Long activityId;
|
|
private Long sponsorId;
|
|
private String sponsorAdId;
|
|
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 Long getSponsorId() {
|
return sponsorId;
|
}
|
|
public void setSponsorId(Long sponsorId) {
|
this.sponsorId = sponsorId;
|
}
|
|
public String getSponsorAdId() {
|
return sponsorAdId;
|
}
|
|
public void setSponsorAdId(String sponsorAdId) {
|
this.sponsorAdId = sponsorAdId == null ? null : sponsorAdId.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;
|
}
|
}
|