admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/entity/bus/user/BindingAccount.java
@@ -1,77 +1,77 @@
package com.yeshi.fanli.entity.bus.user;
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
import com.google.gson.annotations.Expose;
/**
 * 绑定提现的账户
 * @author cxx
 *
 * @date 2018年1月29日
 */
@Table("yeshi_ec_binding_account")
public class BindingAccount {
   public static final int TYPE_ALIPAY=1;
   public static final int TYPE_WXPAY=2;
   @Column(name="id")
   private Long id;
   @Column(name="uid")
   private UserInfo userInfo;
   @Expose
   @Column(name="account")
   private String account;
   @Expose
   @Column(name="type")
   private Integer type;  //1.支付宝  2.微信
   @Expose
   @Column(name="name")
   private String name;
   public Long getId() {
      return id;
   }
   public void setId(Long id) {
      this.id = id;
   }
   public UserInfo getUserInfo() {
      return userInfo;
   }
   public void setUserInfo(UserInfo userInfo) {
      this.userInfo = userInfo;
   }
   public String getAccount() {
      return account;
   }
   public void setAccount(String account) {
      this.account = account;
   }
   public Integer getType() {
      return type;
   }
   public void setType(Integer type) {
      this.type = type;
   }
   public String getName() {
      return name;
   }
   public void setName(String name) {
      this.name = name;
   }
}
package com.yeshi.fanli.entity.bus.user;
import org.yeshi.utils.generater.mybatis.Column;
import org.yeshi.utils.generater.mybatis.Table;
import com.google.gson.annotations.Expose;
/**
 * 绑定提现的账户
 * @author cxx
 *
 * @date 2018年1月29日
 */
@Table("yeshi_ec_binding_account")
public class BindingAccount {
   public static final int TYPE_ALIPAY=1;
   public static final int TYPE_WXPAY=2;
   @Column(name="id")
   private Long id;
   @Column(name="uid")
   private UserInfo userInfo;
   @Expose
   @Column(name="account")
   private String account;
   @Expose
   @Column(name="type")
   private Integer type;  //1.支付宝  2.微信
   @Expose
   @Column(name="name")
   private String name;
   public Long getId() {
      return id;
   }
   public void setId(Long id) {
      this.id = id;
   }
   public UserInfo getUserInfo() {
      return userInfo;
   }
   public void setUserInfo(UserInfo userInfo) {
      this.userInfo = userInfo;
   }
   public String getAccount() {
      return account;
   }
   public void setAccount(String account) {
      this.account = account;
   }
   public Integer getType() {
      return type;
   }
   public void setType(Integer type) {
      this.type = type;
   }
   public String getName() {
      return name;
   }
   public void setName(String name) {
      this.name = name;
   }
}