admin
2019-07-30 573c491b4a1ba60e12a5678a01c1546c0077c1ee
fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserInfoExtra.java
@@ -49,7 +49,18 @@
   @Column(name = "uie_lottery_newbies")
   private Integer lotteryNewbies;
   // 券未读数量
   @Column(name = "uie_coupon_news")
   private Integer couponNews;
   // 是否同步导航栏
   @Column(name = "uie_synch_navbar")
   private Boolean synchNavbar;
   // 首次登录时间
   @Column(name = "uie_first_login_time")
   private Date firstLoginTime;
   // 创建时间
   @Column(name = "uie_create_time")
   private Date createTime;
@@ -57,6 +68,7 @@
   // 更新时间
   @Column(name = "uie_update_time")
   private Date updateTime;
   public Long getId() {
      return id;
@@ -137,5 +149,29 @@
   public void setLotteryNewbies(Integer lotteryNewbies) {
      this.lotteryNewbies = lotteryNewbies;
   }
   public Integer getCouponNews() {
      return couponNews;
   }
   public void setCouponNews(Integer couponNews) {
      this.couponNews = couponNews;
   }
   public Date getFirstLoginTime() {
      return firstLoginTime;
   }
   public void setFirstLoginTime(Date firstLoginTime) {
      this.firstLoginTime = firstLoginTime;
   }
   public Boolean getSynchNavbar() {
      return synchNavbar;
   }
   public void setSynchNavbar(Boolean synchNavbar) {
      this.synchNavbar = synchNavbar;
   }
   
}