admin
2019-09-04 6a90de16db3c98d2c7e37cbd61f8ff22d495b23a
fanli/src/main/java/com/yeshi/fanli/entity/bus/homemodule/Special.java
@@ -25,16 +25,15 @@
   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;  // 男+女+通用
   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;
@@ -52,17 +51,17 @@
   @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")
@@ -81,43 +80,43 @@
   // 跳转是否需要登录
   @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;
   // android最小版本
   @Column(name = "b_min_android_version_code")
   private Integer minAndroidVersionCode;
   // ios最小版本
   @Column(name = "b_min_ios_version_code")
   private Integer minIOSVersionCode;
   
   // 创建时间
   @Column(name = "b_createtime")
@@ -126,23 +125,20 @@
   // 更新时间
   @Column(name = "b_updatetime")
   private Date updatetime;
   // 是否弹框
   @Expose
   private boolean elastic;
   // 背景图片
   private String bottomPicture;
   private String bottomPicture;
   // 是否删除图片
   private Boolean delIcon;
   private Boolean delPicture;
   private Boolean delSubPicture;
   // 限制最低版本
   private String version;
   private String version;
   public Long getId() {
      return id;
@@ -167,7 +163,6 @@
   public void setCard(String card) {
      this.card = card;
   }
   public String getPicture() {
      return picture;
@@ -234,6 +229,7 @@
   }
   public Long getState() {
      return state;
   }
@@ -337,22 +333,6 @@
      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;
   }
@@ -360,4 +340,21 @@
   public void setVersion(String version) {
      this.version = version;
   }
   public Integer getMinAndroidVersionCode() {
      return minAndroidVersionCode;
   }
   public void setMinAndroidVersionCode(Integer minAndroidVersionCode) {
      this.minAndroidVersionCode = minAndroidVersionCode;
   }
   public Integer getMinIOSVersionCode() {
      return minIOSVersionCode;
   }
   public void setMinIOSVersionCode(Integer minIOSVersionCode) {
      this.minIOSVersionCode = minIOSVersionCode;
   }
}