| | |
| | | *
|
| | | * @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;
|
| | |
| | | @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
|
| | |
| | | private Boolean delIcon;
|
| | | private Boolean delPicture;
|
| | | private Boolean delSubPicture;
|
| | | |
| | | // 是否弹框
|
| | | @Expose
|
| | | private boolean elastic;
|
| | | |
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | |
| | | 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;
|
| | | }
|
| | |
|
| | | }
|