From 651a15c78f668bef3859d9ed1bb7ad0b669d3600 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期五, 03 七月 2020 17:52:07 +0800 Subject: [PATCH] 多APP优化 --- fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/SwiperBanner.java | 142 +++++++++++++++++++++++++---------------------- 1 files changed, 76 insertions(+), 66 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/SwiperBanner.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/SwiperBanner.java index 9cfb7a6..68d213d 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/SwiperBanner.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/SwiperBanner.java @@ -3,98 +3,108 @@ 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 + * 杞挱鍥剧鐞� * + * @author yj * @date 2018骞�10鏈�15鏃� */ @Table("yeshi_ec_swiper_banner") -public class SwiperBanner implements Serializable{ +public class SwiperBanner implements Serializable { - private static final long serialVersionUID = 1L; - + private static final long serialVersionUID = 1L; - @Column(name = "sp_id") - private Long id; - @Column(name = "sp_title") - private String title;// 鍚嶇О + @Column(name = "sp_id") + private Long id; - @Column(name = "sp_card") - private String card; // 鍖归厤鏍囪瘑 + @Column(name = "sp_title") + private String title;// 鍚嶇О - @Column(name = "sp_state") - private Integer state; // 鐘舵�侊細 1 鍋滅敤 0鍚敤 - - @Column(name = "sp_createtime") - private Date createtime; // 鍒涘缓鏃堕棿 + @Column(name = "sp_card") + private String card; // 鍖归厤鏍囪瘑 - @Column(name = "sp_updatetime") - private Date updatetime; // 鏇存柊鏃堕棿锛堜慨鏀规椂闂达級 - - - // 鍖呭惈鍥剧墖鏁伴噺 - private Long totalPic; + @Column(name = "sp_state") + private Integer state; // 鐘舵�侊細 1 鍋滅敤 0鍚敤 - public Long getId() { - return id; - } + @Column(name = "sp_createtime") + private Date createtime; // 鍒涘缓鏃堕棿 - public void setId(Long id) { - this.id = id; - } + @Column(name = "sp_updatetime") + private Date updatetime; // 鏇存柊鏃堕棿锛堜慨鏀规椂闂达級 - public String getTitle() { - return title; - } + @Column(name = "sp_system") + private SystemEnum system; - public void setTitle(String title) { - this.title = title; - } + public SystemEnum getSystem() { + return system; + } - public String getCard() { - return card; - } + public void setSystem(SystemEnum system) { + this.system = system; + } - public void setCard(String card) { - this.card = card; - } + // 鍖呭惈鍥剧墖鏁伴噺 + private Long totalPic; - public Integer getState() { - return state; - } + public Long getId() { + return id; + } - public void setState(Integer state) { - this.state = state; - } + public void setId(Long id) { + this.id = id; + } - public Date getCreatetime() { - return createtime; - } + public String getTitle() { + return title; + } - public void setCreatetime(Date createtime) { - this.createtime = createtime; - } + public void setTitle(String title) { + this.title = title; + } - public Date getUpdatetime() { - return updatetime; - } + public String getCard() { + return card; + } - public void setUpdatetime(Date updatetime) { - this.updatetime = updatetime; - } + public void setCard(String card) { + this.card = card; + } - public Long getTotalPic() { - return totalPic; - } + public Integer getState() { + return state; + } - public void setTotalPic(Long totalPic) { - this.totalPic = totalPic; - } - + 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; + } + } -- Gitblit v1.8.0