admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
package com.yeshi.fanli.entity.bus.homemodule;
 
import java.io.Serializable;
import java.util.Date;
 
import com.yeshi.fanli.entity.SystemEnum;
import org.yeshi.utils.generater.mybatis.Column;
import org.yeshi.utils.generater.mybatis.Table;
 
/**
 * 轮播图管理
 *
 * @author yj
 * @date 2018年10月15日
 */
@Table("yeshi_ec_swiper_banner")
public class SwiperBanner implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
 
    @Column(name = "sp_id")
    private Long id;
 
    @Column(name = "sp_title")
    private String title;// 名称
 
    @Column(name = "sp_card")
    private String card; // 匹配标识
 
    @Column(name = "sp_state")
    private Integer state; // 状态: 1 停用   0启用
 
    @Column(name = "sp_createtime")
    private Date createtime; // 创建时间
 
    @Column(name = "sp_updatetime")
    private Date updatetime; // 更新时间(修改时间)
 
    @Column(name = "sp_system")
    private SystemEnum system;
 
    public SystemEnum getSystem() {
        return system;
    }
 
    public void setSystem(SystemEnum system) {
        this.system = system;
    }
 
    // 包含图片数量
    private Long totalPic;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getCard() {
        return card;
    }
 
    public void setCard(String card) {
        this.card = card;
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public Date getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }
 
    public Date getUpdatetime() {
        return updatetime;
    }
 
    public void setUpdatetime(Date updatetime) {
        this.updatetime = updatetime;
    }
 
    public Long getTotalPic() {
        return totalPic;
    }
 
    public void setTotalPic(Long totalPic) {
        this.totalPic = totalPic;
    }
 
}