| | |
| | | package com.yeshi.fanli.entity.taobao;
|
| | |
|
| | | import java.util.Date;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.user.UserInfo;
|
| | |
|
| | | /**
|
| | | * 淘宝联盟授权记录
|
| | | * |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_taobao_union_auth_record")
|
| | | public class TaoBaoUnionAuthRecord {
|
| | | @Column(name = "tuar_id")
|
| | | private Long id;
|
| | | @Column(name = "tuar_uid")
|
| | | private UserInfo user;
|
| | | @Column(name = "tuar_taobao_user_nick")
|
| | | private String taoBaoUserNick;
|
| | | @Column(name = "tuar_taobao_open_uid")
|
| | | private String taoBaoOpenUid;
|
| | | @Column(name = "tuar_taobao_user_id")
|
| | | private String taoBaoUserId;
|
| | | @Column(name = "tuar_create_time")
|
| | | private Date createTime;
|
| | | @Column(name = "tuar_update_time")
|
| | | private Date updateTime;
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public UserInfo getUser() {
|
| | | return user;
|
| | | }
|
| | |
|
| | | public void setUser(UserInfo user) {
|
| | | this.user = user;
|
| | | }
|
| | |
|
| | | public String getTaoBaoUserNick() {
|
| | | return taoBaoUserNick;
|
| | | }
|
| | |
|
| | | public void setTaoBaoUserNick(String taoBaoUserNick) {
|
| | | this.taoBaoUserNick = taoBaoUserNick;
|
| | | }
|
| | |
|
| | | public String getTaoBaoOpenUid() {
|
| | | return taoBaoOpenUid;
|
| | | }
|
| | |
|
| | | public void setTaoBaoOpenUid(String taoBaoOpenUid) {
|
| | | this.taoBaoOpenUid = taoBaoOpenUid;
|
| | | }
|
| | |
|
| | | public String getTaoBaoUserId() {
|
| | | return taoBaoUserId;
|
| | | }
|
| | |
|
| | | public void setTaoBaoUserId(String taoBaoUserId) {
|
| | | this.taoBaoUserId = taoBaoUserId;
|
| | | }
|
| | |
|
| | | public Date getCreateTime() {
|
| | | return createTime;
|
| | | }
|
| | |
|
| | | public void setCreateTime(Date createTime) {
|
| | | this.createTime = createTime;
|
| | | }
|
| | |
|
| | | public Date getUpdateTime() {
|
| | | return updateTime;
|
| | | }
|
| | |
|
| | | public void setUpdateTime(Date updateTime) {
|
| | | this.updateTime = updateTime;
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.entity.taobao; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | import com.yeshi.fanli.entity.bus.user.UserInfo; |
| | | |
| | | /** |
| | | * 淘宝联盟授权记录 |
| | | * |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | @Table("yeshi_ec_taobao_union_auth_record") |
| | | public class TaoBaoUnionAuthRecord { |
| | | @Column(name = "tuar_id") |
| | | private Long id; |
| | | @Column(name = "tuar_uid") |
| | | private UserInfo user; |
| | | @Column(name = "tuar_taobao_user_nick") |
| | | private String taoBaoUserNick; |
| | | @Column(name = "tuar_taobao_open_uid") |
| | | private String taoBaoOpenUid; |
| | | @Column(name = "tuar_taobao_user_id") |
| | | private String taoBaoUserId; |
| | | @Column(name = "tuar_create_time") |
| | | private Date createTime; |
| | | @Column(name = "tuar_update_time") |
| | | private Date updateTime; |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public UserInfo getUser() { |
| | | return user; |
| | | } |
| | | |
| | | public void setUser(UserInfo user) { |
| | | this.user = user; |
| | | } |
| | | |
| | | public String getTaoBaoUserNick() { |
| | | return taoBaoUserNick; |
| | | } |
| | | |
| | | public void setTaoBaoUserNick(String taoBaoUserNick) { |
| | | this.taoBaoUserNick = taoBaoUserNick; |
| | | } |
| | | |
| | | public String getTaoBaoOpenUid() { |
| | | return taoBaoOpenUid; |
| | | } |
| | | |
| | | public void setTaoBaoOpenUid(String taoBaoOpenUid) { |
| | | this.taoBaoOpenUid = taoBaoOpenUid; |
| | | } |
| | | |
| | | public String getTaoBaoUserId() { |
| | | return taoBaoUserId; |
| | | } |
| | | |
| | | public void setTaoBaoUserId(String taoBaoUserId) { |
| | | this.taoBaoUserId = taoBaoUserId; |
| | | } |
| | | |
| | | public Date getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public Date getUpdateTime() { |
| | | return updateTime; |
| | | } |
| | | |
| | | public void setUpdateTime(Date updateTime) { |
| | | this.updateTime = updateTime; |
| | | } |
| | | |
| | | } |