| | |
| | | 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.mybatis.Column;
|
| | | import org.yeshi.utils.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;
|
| | | }
|
| | |
|
| | | }
|
| | | 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; |
| | | } |
| | | |
| | | } |