From 9eeda0d3049b71877c373c04d65533939b5582ef Mon Sep 17 00:00:00 2001 From: yujian <yujian@123.com> Date: 星期一, 02 九月 2019 09:55:55 +0800 Subject: [PATCH] getBoss方法只查询有效上级信息 --- fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/Special.java | 131 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 129 insertions(+), 2 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/Special.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/Special.java index 64ab2ee..95c0753 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/Special.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/Special.java @@ -16,11 +16,26 @@ * * @date 2018骞�10鏈�23鏃� */ +/** + * @author Administrator + * + */ @Table("yeshi_ec_special") public class Special implements Serializable { private static final long serialVersionUID = 1L; + + public final static int SEX_DEFAULT = 0; // 閫氱敤 + public final static int SEX_WOMAN = 1; // 濂� + public final static int SEX_MAN = 2; // 鐢� + public final static int SEX_DEFAULT_WOMAN = 10; // 濂�+ 閫氱敤 + public final static int SEX_DEFAULT_MAN = 20; // 鐢�+ 閫氱敤 + public final static int SEX_MAN_WOMAN = 12; // 鐢�+ 濂� + + public final static int SEX_ALL = 120; // 鐢�+濂�+閫氱敤 + + @Expose @Column(name = "b_id") private Long id; @@ -38,11 +53,15 @@ @Column(name = "b_card_id") private Long cardId; - // 涓诲浘 @Expose @Column(name = "b_main_picture") private String picture; + + // 瑁呴グ鍥� + @Expose + @Column(name = "b_icon") + private String icon; // 闄勫浘 @Expose @@ -59,15 +78,31 @@ @Column(name = "b_params") private String params; + // 璺宠浆鏄惁闇�瑕佺櫥褰� + @Column(name = "b_jump_login") + private boolean jumpLogin; + // 鎺掑簭 @Column(name = "b_orderby") private Integer orderby; + + // 鎺掑簭 + @Column(name = "b_order_man") + private Integer orderMan; + + // 鎺掑簭 + @Column(name = "b_order_woman") + private Integer orderWoman; // 鐘舵�� @Column(name = "b_state") private Long state; - // 鏄剧ず绫诲瀷 + // 鎬у埆鍖哄垎 + @Column(name = "b_sex") + private Integer sex; + + // 鏄剧ず绫诲瀷锛氬渾褰㈠浘 銆佸ぇ鍥� @Expose @Column(name = "b_show_type") private String showType; @@ -83,6 +118,18 @@ // 鏇存柊鏃堕棿 @Column(name = "b_updatetime") private Date updatetime; + + // 鑳屾櫙鍥剧墖 + private String bottomPicture; + + // 鏄惁鍒犻櫎鍥剧墖 + private Boolean delIcon; + private Boolean delPicture; + private Boolean delSubPicture; + + // 鏄惁寮规 + @Expose + private boolean elastic; public Long getId() { @@ -198,4 +245,84 @@ this.remark = remark; } + public boolean isJumpLogin() { + return jumpLogin; + } + + public void setJumpLogin(boolean jumpLogin) { + this.jumpLogin = jumpLogin; + } + + public String getBottomPicture() { + return bottomPicture; + } + + public void setBottomPicture(String bottomPicture) { + this.bottomPicture = bottomPicture; + } + + public String getIcon() { + return icon; + } + + public void setIcon(String icon) { + this.icon = icon; + } + + public Boolean getDelIcon() { + return delIcon; + } + + public void setDelIcon(Boolean delIcon) { + this.delIcon = delIcon; + } + + public Boolean getDelPicture() { + return delPicture; + } + + public void setDelPicture(Boolean delPicture) { + this.delPicture = delPicture; + } + + public Boolean getDelSubPicture() { + return delSubPicture; + } + + public void setDelSubPicture(Boolean delSubPicture) { + this.delSubPicture = delSubPicture; + } + + public boolean isElastic() { + return elastic; + } + + public void setElastic(boolean elastic) { + this.elastic = elastic; + } + + 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; + } + } -- Gitblit v1.8.0