package com.yeshi.fanli.entity.shop;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
/**
|
* 订单
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_shop_order_goods")
|
public class BanLiShopOrderGoods {
|
@Column(name = "og_id")
|
private Long id;
|
@Column(name = "og_picture")
|
private String picture;
|
@Column(name = "og_goods_name")
|
private String goodsName;// 商品名字
|
@Column(name = "og_set_name")
|
private String setName;// 套餐名字
|
@Column(name = "og_create_time")
|
private Date createTime;// 创建时间
|
@Column(name = "og_state")
|
private Integer state;// 0-下线 1-在线
|
@Column(name = "og_zk_price")
|
private BigDecimal zkPrice;// 商品折扣价格
|
@Column(name = "og_goods_id")
|
private Long goodsId;// 商品ID
|
@Column(name = "og_goods_set_id")
|
private Long goodsSetId;// 套餐ID
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getGoodsName() {
|
return goodsName;
|
}
|
|
public void setGoodsName(String goodsName) {
|
this.goodsName = goodsName;
|
}
|
|
public String getSetName() {
|
return setName;
|
}
|
|
public void setSetName(String setName) {
|
this.setName = setName;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public BigDecimal getZkPrice() {
|
return zkPrice;
|
}
|
|
public void setZkPrice(BigDecimal zkPrice) {
|
this.zkPrice = zkPrice;
|
}
|
|
public Long getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(Long goodsId) {
|
this.goodsId = goodsId;
|
}
|
|
public Long getGoodsSetId() {
|
return goodsSetId;
|
}
|
|
public void setGoodsSetId(Long goodsSetId) {
|
this.goodsSetId = goodsSetId;
|
}
|
|
public String getPicture() {
|
return picture;
|
}
|
|
public void setPicture(String picture) {
|
this.picture = picture;
|
}
|
}
|