package com.yeshi.fanli.entity.integral;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
import com.google.gson.annotations.Expose;
|
|
/**
|
* 积分明细
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_integral_detail")
|
public class IntegralDetail {
|
|
@Expose
|
@Column(name = "td_id")
|
private Long id;
|
|
@Column(name = "td_uid")
|
private Long uid; // 用户id
|
|
@Expose
|
@Column(name = "td_money")
|
private Integer money; // 积分
|
|
@Expose
|
@Column(name = "td_title")
|
private String title; // 标题
|
|
@Expose
|
@Column(name = "td_desc_info")
|
private String descInfo; // 详细信息
|
|
@Expose
|
@Column(name = "td_remark")
|
private String remark; // 备注
|
|
@Expose
|
@Column(name = "td_unique_key")
|
private String uniqueKey; // 唯一值
|
|
@Expose
|
@Column(name = "td_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 Integer getMoney() {
|
return money;
|
}
|
|
public void setMoney(Integer money) {
|
this.money = money;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getDescInfo() {
|
return descInfo;
|
}
|
|
public void setDescInfo(String descInfo) {
|
this.descInfo = descInfo;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getUniqueKey() {
|
return uniqueKey;
|
}
|
|
public void setUniqueKey(String uniqueKey) {
|
this.uniqueKey = uniqueKey;
|
}
|
|
}
|