package com.ks.tool.bkz.entity.sdlj;
|
|
import java.util.Date;
|
|
public class SDLJUserGoods {
|
private Long id;
|
|
private Long goodsId;
|
|
private Long uid;
|
|
private String tbUid;
|
|
private Date createTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(Long goodsId) {
|
this.goodsId = goodsId;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getTbUid() {
|
return tbUid;
|
}
|
|
public void setTbUid(String tbUid) {
|
this.tbUid = tbUid;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|