From f4a0f2acc63d7785eab108419a4e16f5f688cb95 Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期六, 18 一月 2020 12:06:27 +0800 Subject: [PATCH] 用户注册信息 --- fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/HomeNavbar.java | 109 ++++++++++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 96 insertions(+), 13 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/HomeNavbar.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/HomeNavbar.java index b153356..b6bdc19 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/HomeNavbar.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/HomeNavbar.java @@ -2,13 +2,11 @@ import java.io.Serializable; import java.util.Date; -import java.util.List; import org.yeshi.utils.mybatis.Column; import org.yeshi.utils.mybatis.Table; import com.google.gson.annotations.Expose; -import com.yeshi.fanli.entity.system.BusinessSystem; /** * 瀵艰埅绠$悊 @@ -20,13 +18,10 @@ @Table("yeshi_ec_home_navbar") public class HomeNavbar implements Serializable{ - /** - * - */ private static final long serialVersionUID = 1L; public enum NavbarTypeEnum { - category("鍒嗙被"), weex("闃块噷鐧惧窛"), web("缃戦〉"); + category("鍒嗙被"), weex("闃块噷鐧惧窛"), web("缃戦〉") , commonTemplate("閫氱敤妯℃澘"); private final String desc; private NavbarTypeEnum(String desc) { @@ -38,7 +33,7 @@ } } - + @Expose @Column(name = "br_id") private Long id; @@ -75,6 +70,13 @@ // 鎺掑簭 @Column(name = "br_orderby") private Integer orderby; + + // 鎺掑簭 + @Column(name = "br_order_man") + private Integer orderMan; + // 鎺掑簭 + @Column(name = "br_order_woman") + private Integer orderWoman; //璧峰鏃堕棿 @Column(name = "br_start_time") @@ -87,6 +89,14 @@ // 鐘舵�侊細1鍚敤 0 鍋滅敤 @Column(name = "br_state") private Integer state; + + // 鏄惁榛樿锛� 0 闈為粯璁� 1 榛樿椤� + @Column(name = "br_is_default") + private Boolean isDefault; + + // 鍥哄畾椤癸細0 闈炲浐瀹� 1 鍥哄畾 + @Column(name = "br_is_fixed") + private Boolean isFixed; // 鍒涘缓鏃堕棿 @Column(name = "br_createtime") @@ -96,6 +106,10 @@ @Column(name = "br_updatetime") private Date updatetime; + // 璺宠浆鍙傛暟 json 瀛楃涓� + @Expose + @Column(name = "br_params") + private String params; // 鏄惁瀹氭椂 private boolean timeTask; @@ -103,9 +117,21 @@ private String startTime_str; // 缁撴潫鏃堕棿 private String endTime_str; - // 绯荤粺鍏宠仈鍒楄〃 - private List<BusinessSystem> systemList; + // 杞挱鍚嶅瓧 + private String swiperName; + // 鍒嗙被鍚嶇О + private String className; + + private Integer sex; + + + public HomeNavbar() {} + + public HomeNavbar(Long id) { + this.id = id; + } + public Long getId() { return id; @@ -235,12 +261,69 @@ this.endTime_str = endTime_str; } - public List<BusinessSystem> getSystemList() { - return systemList; + public String getSwiperName() { + return swiperName; } - public void setSystemList(List<BusinessSystem> systemList) { - this.systemList = systemList; + public void setSwiperName(String swiperName) { + this.swiperName = swiperName; } + public String getClassName() { + return className; + } + + public void setClassName(String className) { + this.className = className; + } + + public Boolean getIsDefault() { + return isDefault; + } + + public void setIsDefault(Boolean isDefault) { + this.isDefault = isDefault; + } + + public Boolean getIsFixed() { + return isFixed; + } + + public void setIsFixed(Boolean isFixed) { + this.isFixed = isFixed; + } + + public Integer getSex() { + return sex; + } + + public void setSex(Integer sex) { + this.sex = sex; + } + + public Integer getOrderMan() { + return orderMan; + } + + public void setOrderMan(Integer orderMan) { + this.orderMan = orderMan; + } + + public Integer getOrderWoman() { + return orderWoman; + } + + public void setOrderWoman(Integer orderWoman) { + this.orderWoman = orderWoman; + } + + + public String getParams() { + return params; + } + + public void setParams(String params) { + this.params = params; + } + } -- Gitblit v1.8.0