yujian
2019-11-04 148af6b2f57be264c84d0991237fbd7ddea491a4
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
package com.yeshi.fanli.entity.shop;
 
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
@Table("yeshi_ec_shop_goods_imgs")
public class BanLiShopGoodsImg {
    @Column(name = "sgi_id")
    private Long id;
    @Column(name = "sgi_goods_id")
    private BanLiShopGoods goods;
    @Column(name = "sgi_url")
    private String url;
    @Column(name = "sgi_url_md5")
    private String urlMD5;
    @Column(name = "sgi_create_time")
    private Date createTime;
    @Column(name = "sgi_weight")
    private Integer weight;
 
    public Integer getWeight() {
        return weight;
    }
 
    public void setWeight(Integer weight) {
        this.weight = weight;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public BanLiShopGoods getGoods() {
        return goods;
    }
 
    public void setGoods(BanLiShopGoods goods) {
        this.goods = goods;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public String getUrlMD5() {
        return urlMD5;
    }
 
    public void setUrlMD5(String urlMD5) {
        this.urlMD5 = urlMD5;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
}