package com.yeshi.fanli.entity.goods.recommend;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
@Table("yeshi_ec_recommend_goods_user_delete")
|
public class RecommendGoodsDeleteHistory {
|
@Column(name = "ud_id")
|
private Long id;
|
@Column(name = "ud_device")
|
private String device;
|
@Column(name = "ud_uid")
|
private Long uid;
|
@Column(name = "ud_goods_id")
|
private Long goodsId;
|
@Column(name = "ud_goods_source")
|
private Integer goodsSource;
|
@Column(name = "ud_reason")
|
private String reason;
|
@Column(name = "ud_create_time")
|
private Date createTime;
|
@Column(name = "ud_beizhu")
|
private String beiZhu;
|
|
public RecommendGoodsDeleteHistory(Long goodsId, Integer goodsSource) {
|
this.goodsId = goodsId;
|
this.goodsSource = goodsSource;
|
}
|
public RecommendGoodsDeleteHistory() {
|
|
}
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getDevice() {
|
return device;
|
}
|
|
public void setDevice(String device) {
|
this.device = device;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public Long getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(Long goodsId) {
|
this.goodsId = goodsId;
|
}
|
|
public Integer getGoodsSource() {
|
return goodsSource;
|
}
|
|
public void setGoodsSource(Integer goodsSource) {
|
this.goodsSource = goodsSource;
|
}
|
|
public String getReason() {
|
return reason;
|
}
|
|
public void setReason(String reason) {
|
this.reason = reason;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getBeiZhu() {
|
return beiZhu;
|
}
|
|
public void setBeiZhu(String beiZhu) {
|
this.beiZhu = beiZhu;
|
}
|
}
|