package com.yeshi.fanli.entity.integral;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
/**
|
* 积分兑换记录
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_integral_exchange_record")
|
public class IntegralExchangeRecord implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Column(name = "er_id")
|
private Long id;
|
|
@Column(name = "er_uid")
|
private Long uid;
|
|
@Column(name = "er_exchange_id")
|
private Long exchangeId;
|
|
@Column(name = "er_create_time")
|
private Date createTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public Long getExchangeId() {
|
return exchangeId;
|
}
|
|
public void setExchangeId(Long exchangeId) {
|
this.exchangeId = exchangeId;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|