package com.feetao.web.model;
import java.io.Serializable;
import java.util.Date;
public class ProductDO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键ID
*/
private Long id;
/**
* 用户ID
*/
private Long userId;
/**
* 分类
*/
private String item;
/**
* 标题
*/
private String title;
/**
* 描述
*/
private String description;
/**
* 缩略图
*/
private String thumbnail;
/**
* 原图
*/
private String picture;
/**
* 价格
*/
private Long price;
/**
* 原价
*/
private Long oriPrice;
/**
* 属性图
*/
private String attrPictures;
/**
* 单位
*/
private String unit;
/**
* 销量
*/
private Integer sales;
/**
* 状态
*/
private Byte status;
/**
* create time
*/
private Date gmtCreate;
/**
* modified time
*/
private Date gmtModified;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getThumbnail() {
return thumbnail;
}
public void setThumbnail(String thumbnail) {
this.thumbnail = thumbnail;
}
public String getPicture() {
return picture;
}
public void setPicture(String picture) {
this.picture = picture;
}
public Long getPrice() {
return price;
}
public void setPrice(Long price) {
this.price = price;
}
public String getUnit() {
return unit;
}
public void setUnit(String unit) {
this.unit = unit;
}
public Integer getSales() {
return sales;
}
public void setSales(Integer sales) {
this.sales = sales;
}
public Byte getStatus() {
return status;
}
public void setStatus(Byte status) {
this.status = status;
}
public Date getGmtCreate() {
return gmtCreate;
}
public void setGmtCreate(Date gmtCreate) {
this.gmtCreate = gmtCreate;
}
public Date getGmtModified() {
return gmtModified;
}
public void setGmtModified(Date gmtModified) {
this.gmtModified = gmtModified;
}
public String getItem() {
return item;
}
public void setItem(String item) {
this.item = item;
}
public Long getOriPrice() {
return oriPrice;
}
public void setOriPrice(Long oriPrice) {
this.oriPrice = oriPrice;
}
public String getAttrPictures() {
return attrPictures;
}
public void setAttrPictures(String attrPictures) {
this.attrPictures = attrPictures;
}
}