Administrator
2018-11-09 5d1b933b0814565fd4095dea7519dd5389582082
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package com.yeshi.fanli.entity.bus.homemodule;
 
import java.io.Serializable;
import java.util.Date;
 
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
 
import com.yeshi.fanli.entity.common.JumpDetailV2;
 
@Entity
@Table(name = "yeshi_ec_swiper_banner_picture")
@org.yeshi.utils.mybatis.Table("yeshi_ec_swiper_banner_picture")
public class SwiperPicture implements Serializable {
    
    private static final long serialVersionUID = 1L;
 
    @Id
    @javax.persistence.Column(name = "pic_id")
    @GeneratedValue(strategy = GenerationType.AUTO)
    @org.yeshi.utils.mybatis.Column(name = "pic_id")
    private Long id;
 
    @JoinColumn(name = "pic_banner_id")
    @org.yeshi.utils.mybatis.Column(name = "pic_banner_id")
    private Long bannerId;
 
    @JoinColumn(name = "pic_src")
    @org.yeshi.utils.mybatis.Column(name = "pic_src")
    private String src;
 
    @ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "pic_jumpid")
    @org.yeshi.utils.mybatis.Column(name = "pic_jumpid")
    private JumpDetailV2 jumpDetail;
 
    @JoinColumn(name = "pic_params")
    @org.yeshi.utils.mybatis.Column(name = "pic_params")
    private String params;
 
    @JoinColumn(name = "pic_order")
    @org.yeshi.utils.mybatis.Column(name = "pic_order")
    private Integer order;
 
    @JoinColumn(name = "pic_remark")
    @org.yeshi.utils.mybatis.Column(name = "pic_remark")
    private String remark;
 
    @JoinColumn(name = "pic_state")
    @org.yeshi.utils.mybatis.Column(name = "pic_state")
    private Integer state;
 
    @JoinColumn(name = "pic_createtime")
    @org.yeshi.utils.mybatis.Column(name = "pic_createtime")
    private Date createtime;
 
    @JoinColumn(name = "pic_updatetime")
    @org.yeshi.utils.mybatis.Column(name = "pic_updatetime")
    private Date updatetime;
 
    public Long getId() {
        return this.id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getBannerId() {
        return this.bannerId;
    }
 
    public void setBannerId(Long bannerId) {
        this.bannerId = bannerId;
    }
 
    public String getSrc() {
        return this.src;
    }
 
    public void setSrc(String src) {
        this.src = src;
    }
 
    public String getRemark() {
        return this.remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public Integer getState() {
        return this.state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public Date getCreatetime() {
        return this.createtime;
    }
 
    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }
 
    public Date getUpdatetime() {
        return this.updatetime;
    }
 
    public void setUpdatetime(Date updatetime) {
        this.updatetime = updatetime;
    }
 
    public Integer getOrder() {
        return this.order;
    }
 
    public void setOrder(Integer order) {
        this.order = order;
    }
 
    public JumpDetailV2 getJumpDetail() {
        return this.jumpDetail;
    }
 
    public void setJumpDetail(JumpDetailV2 jumpDetail) {
        this.jumpDetail = jumpDetail;
    }
 
    public String getParams() {
        return this.params;
    }
 
    public void setParams(String params) {
        this.params = params;
    }
}