package com.yeshi.fanli.entity.bus.homemodule;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.fanli.entity.common.JumpDetailV2;
|
|
/**
|
* 专题管理
|
*
|
* @author yj
|
*
|
* @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;
|
|
// 名称
|
@Expose
|
@Column(name = "b_name")
|
private String name;
|
|
// 唯一标识
|
@Column(name = "b_card")
|
private String card;
|
|
// 标识管理id
|
@Expose
|
@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
|
@Column(name = "b_sub_picture")
|
private String subPicture;
|
|
// 跳转详情
|
@Expose
|
@Column(name = "b_jumpid")
|
private JumpDetailV2 jumpDetail;
|
|
// 跳转参数
|
@Expose
|
@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;
|
|
// 备注
|
@Column(name = "b_remark")
|
private String remark;
|
|
// 平台:1-android 2-IOS
|
@Column(name = "b_platform")
|
private Integer platform;
|
|
// 版本号
|
@Column(name = "b_version_code")
|
private Integer versionCode;
|
|
// 创建时间
|
@Column(name = "b_createtime")
|
private Date createtime;
|
|
// 更新时间
|
@Column(name = "b_updatetime")
|
private Date updatetime;
|
|
|
// 是否弹框
|
@Expose
|
private boolean elastic;
|
|
|
// 背景图片
|
private String bottomPicture;
|
// 是否删除图片
|
private Boolean delIcon;
|
private Boolean delPicture;
|
private Boolean delSubPicture;
|
|
// 限制最低版本
|
private String version;
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getCard() {
|
return card;
|
}
|
|
public void setCard(String card) {
|
this.card = card;
|
}
|
|
|
public String getPicture() {
|
return picture;
|
}
|
|
public void setPicture(String picture) {
|
this.picture = picture;
|
}
|
|
public String getSubPicture() {
|
return subPicture;
|
}
|
|
public void setSubPicture(String subPicture) {
|
this.subPicture = subPicture;
|
}
|
|
public JumpDetailV2 getJumpDetail() {
|
return jumpDetail;
|
}
|
|
public void setJumpDetail(JumpDetailV2 jumpDetail) {
|
this.jumpDetail = jumpDetail;
|
}
|
|
public String getParams() {
|
return params;
|
}
|
|
public void setParams(String params) {
|
this.params = params;
|
}
|
|
public Integer getOrderby() {
|
return orderby;
|
}
|
|
public void setOrderby(Integer orderby) {
|
this.orderby = orderby;
|
}
|
|
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 getCardId() {
|
return cardId;
|
}
|
|
public void setCardId(Long cardId) {
|
this.cardId = cardId;
|
}
|
|
public Long getState() {
|
return state;
|
}
|
|
public void setState(Long state) {
|
this.state = state;
|
}
|
|
public String getShowType() {
|
return showType;
|
}
|
|
public void setShowType(String showType) {
|
this.showType = showType;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
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;
|
}
|
|
public Integer getPlatform() {
|
return platform;
|
}
|
|
public void setPlatform(Integer platform) {
|
this.platform = platform;
|
}
|
|
public Integer getVersionCode() {
|
return versionCode;
|
}
|
|
public void setVersionCode(Integer versionCode) {
|
this.versionCode = versionCode;
|
}
|
|
public String getVersion() {
|
return version;
|
}
|
|
public void setVersion(String version) {
|
this.version = version;
|
}
|
}
|