admin
2019-09-22 b9f8ef2c4737b6e6be4b12fc8f7bafb033bfcfe5
fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserInfoExtra.java
@@ -60,7 +60,24 @@
   // 首次登录时间
   @Column(name = "uie_first_login_time")
   private Date firstLoginTime;
   // 性别: 1-女  2-男
   @Column(name = "uie_sex")
   private Integer sex;
   // 微信号
   @Column(name = "uie_weixin")
   private String weiXin;
   // 金币数量
   @Column(name = "uie_gold_coin")
   private Integer goldCoin;
   //是否微信自動提現
   @Column(name = "uie_auto_extract")
   private Boolean autoExtract;
   // 创建时间
   @Column(name = "uie_create_time")
   private Date createTime;
@@ -173,5 +190,38 @@
   public void setSynchNavbar(Boolean synchNavbar) {
      this.synchNavbar = synchNavbar;
   }
   public Integer getSex() {
      return sex;
   }
   public void setSex(Integer sex) {
      this.sex = sex;
   }
   public String getWeiXin() {
      return weiXin;
   }
   public void setWeiXin(String weiXin) {
      this.weiXin = weiXin;
   }
   public Integer getGoldCoin() {
      return goldCoin;
   }
   public void setGoldCoin(Integer goldCoin) {
      this.goldCoin = goldCoin;
   }
   
   public Boolean getAutoExtract() {
      return autoExtract;
   }
   public void setAutoExtract(Boolean autoExtract) {
      this.autoExtract = autoExtract;
   }
}