package com.ks.lucky.pojo.DO;
|
|
|
import org.yeshi.utils.generater.mybatis.Column;
|
import org.yeshi.utils.generater.mybatis.Table;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Table("lucky_activity_award_result_extra")
|
public class LuckyActivityAwardResultExtra implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Column(name = "id")
|
private Long id;
|
@Column(name = "award_result_id")
|
private Long awardResultId;
|
|
@Column(name = "name")
|
private String name;
|
|
@Column(name = "phone")
|
private String phone;
|
|
@Column(name = "red_package")
|
private BigDecimal redPackage;
|
|
@Column(name = "alipay_uid")
|
private String alipyUid;
|
|
@Column(name = "address")
|
private String address;
|
|
@Column(name = "create_time")
|
private Date createTime;
|
|
|
public String getAlipyUid() {
|
return alipyUid;
|
}
|
|
public void setAlipyUid(String alipyUid) {
|
this.alipyUid = alipyUid;
|
}
|
|
public BigDecimal getRedPackage() {
|
return redPackage;
|
}
|
|
public void setRedPackage(BigDecimal redPackage) {
|
this.redPackage = redPackage;
|
}
|
|
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;
|
}
|
}
|