From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 25 二月 2025 16:41:22 +0800 Subject: [PATCH] 淘宝转链接口更新 --- fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserAccountBindingHistory.java | 159 ++++++++++++++++++++++++++-------------------------- 1 files changed, 80 insertions(+), 79 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserAccountBindingHistory.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserAccountBindingHistory.java index 61895e7..3350922 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserAccountBindingHistory.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserAccountBindingHistory.java @@ -1,79 +1,80 @@ -package com.yeshi.fanli.entity.bus.user; - -import java.util.Date; - -import org.yeshi.utils.mybatis.Column; -import org.yeshi.utils.mybatis.Table; - -/** - * 鐢ㄦ埛璐︽埛缁戝畾璁板綍 - * - * @author Administrator - * - */ -@Table("yeshi_ec_user_account_bind_history") -public class UserAccountBindingHistory { - public final static int TYPE_WX = 1; - public final static int TYPE_TB = 2; - public final static int TYPE_PHONE = 3; - @Column(name = "uabh_id") - private Long id; - @Column(name = "uabh_uid") - private Long uid; - @Column(name = "uabh_type") - private Integer type; - @Column(name = "uabh_content") - private String content; - @Column(name = "uabh_first") - private Boolean first; - @Column(name = "uabh_create_time") - private Date createTime; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public Long getUid() { - return uid; - } - - public void setUid(Long uid) { - this.uid = uid; - } - - public Integer getType() { - return type; - } - - public void setType(Integer type) { - this.type = type; - } - - public String getContent() { - return content; - } - - public void setContent(String content) { - this.content = content; - } - - public Boolean getFirst() { - return first; - } - - public void setFirst(Boolean first) { - this.first = first; - } - - public Date getCreateTime() { - return createTime; - } - - public void setCreateTime(Date createTime) { - this.createTime = createTime; - } -} +package com.yeshi.fanli.entity.bus.user; + +import java.util.Date; + +import org.yeshi.utils.generater.mybatis.Column; +import org.yeshi.utils.generater.mybatis.Table; + +/** + * 鐢ㄦ埛璐︽埛缁戝畾璁板綍 + * + * @author Administrator + * + */ +@Table("yeshi_ec_user_account_bind_history") +public class UserAccountBindingHistory { + public final static int TYPE_WX = 1; + public final static int TYPE_TB = 2; + public final static int TYPE_PHONE = 3; + public final static int TYPE_QQ = 4; + @Column(name = "uabh_id") + private Long id; + @Column(name = "uabh_uid") + private Long uid; + @Column(name = "uabh_type") + private Integer type; + @Column(name = "uabh_content") + private String content; + @Column(name = "uabh_first") + private Boolean first; + @Column(name = "uabh_create_time") + private Date createTime; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getUid() { + return uid; + } + + public void setUid(Long uid) { + this.uid = uid; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public Boolean getFirst() { + return first; + } + + public void setFirst(Boolean first) { + this.first = first; + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } +} -- Gitblit v1.8.0