package com.ks.lucky.pojo.DO;
|
|
import java.util.Date;
|
|
public class LuckyActivityAwardResultExtra {
|
private Long id;
|
|
private Long awardResultId;
|
|
private String name;
|
|
private String phone;
|
|
private String address;
|
|
private Date createTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getAwardResultId() {
|
return awardResultId;
|
}
|
|
public void setAwardResultId(Long awardResultId) {
|
this.awardResultId = awardResultId;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name == null ? null : name.trim();
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone == null ? null : phone.trim();
|
}
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address == null ? null : address.trim();
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|