package com.ks.tool.bkz.entity;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
public class TBGoodsInfo {
|
private Long id;
|
private Long goodsId;
|
private String title;
|
private String imgs;
|
private BigDecimal zkPrice;
|
private String couponInfo;
|
private BigDecimal couponAmount;
|
private BigDecimal couponStartPrice;
|
private Integer couponTotalCount;
|
private Integer couponLeftCount;
|
private String couponStartTime;
|
private String couponEndTime;
|
private BigDecimal couponPrice;
|
private Integer salesNum;
|
private BigDecimal commissionRate;
|
private Date createTime;
|
private Date updateTime;
|
private Integer cid;//淘宝分类ID
|
private Integer tmall;//是否为天猫 1-是
|
private String tkl;
|
private Date tklUpdateTime;
|
|
public String getTkl() {
|
return tkl;
|
}
|
|
public void setTkl(String tkl) {
|
this.tkl = tkl;
|
}
|
|
public Date getTklUpdateTime() {
|
return tklUpdateTime;
|
}
|
|
public void setTklUpdateTime(Date tklUpdateTime) {
|
this.tklUpdateTime = tklUpdateTime;
|
}
|
|
public Integer getTmall() {
|
return tmall;
|
}
|
|
public void setTmall(Integer tmall) {
|
this.tmall = tmall;
|
}
|
|
|
|
|
|
|
|
|
public Integer getCid() {
|
return cid;
|
}
|
|
public void setCid(Integer cid) {
|
this.cid = cid;
|
}
|
|
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 String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getImgs() {
|
return imgs;
|
}
|
|
public void setImgs(String imgs) {
|
this.imgs = imgs;
|
}
|
|
public BigDecimal getZkPrice() {
|
return zkPrice;
|
}
|
|
public void setZkPrice(BigDecimal zkPrice) {
|
this.zkPrice = zkPrice;
|
}
|
|
public String getCouponInfo() {
|
return couponInfo;
|
}
|
|
public void setCouponInfo(String couponInfo) {
|
this.couponInfo = couponInfo;
|
}
|
|
public BigDecimal getCouponAmount() {
|
return couponAmount;
|
}
|
|
public void setCouponAmount(BigDecimal couponAmount) {
|
this.couponAmount = couponAmount;
|
}
|
|
public BigDecimal getCouponStartPrice() {
|
return couponStartPrice;
|
}
|
|
public void setCouponStartPrice(BigDecimal couponStartPrice) {
|
this.couponStartPrice = couponStartPrice;
|
}
|
|
public Integer getCouponTotalCount() {
|
return couponTotalCount;
|
}
|
|
public void setCouponTotalCount(Integer couponTotalCount) {
|
this.couponTotalCount = couponTotalCount;
|
}
|
|
public Integer getCouponLeftCount() {
|
return couponLeftCount;
|
}
|
|
public void setCouponLeftCount(Integer couponLeftCount) {
|
this.couponLeftCount = couponLeftCount;
|
}
|
|
public String getCouponStartTime() {
|
return couponStartTime;
|
}
|
|
public void setCouponStartTime(String couponStartTime) {
|
this.couponStartTime = couponStartTime;
|
}
|
|
public String getCouponEndTime() {
|
return couponEndTime;
|
}
|
|
public void setCouponEndTime(String couponEndTime) {
|
this.couponEndTime = couponEndTime;
|
}
|
|
public BigDecimal getCouponPrice() {
|
return couponPrice;
|
}
|
|
public void setCouponPrice(BigDecimal couponPrice) {
|
this.couponPrice = couponPrice;
|
}
|
|
public Integer getSalesNum() {
|
return salesNum;
|
}
|
|
public void setSalesNum(Integer salesNum) {
|
this.salesNum = salesNum;
|
}
|
|
public BigDecimal getCommissionRate() {
|
return commissionRate;
|
}
|
|
public void setCommissionRate(BigDecimal commissionRate) {
|
this.commissionRate = commissionRate;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|