yujian
2020-05-09 7e7db2fa55a9a3af46d4fd8ede0dee147f101d64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
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;
    }
}