| | |
| | | package com.yeshi.fanli.entity.bus.user;
|
| | |
|
| | | import java.util.Date;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | @Table("yeshi_ec_user_info_extra_taobao")
|
| | | public class UserExtraTaoBaoInfo {
|
| | | @Column(name = "uiet_id")
|
| | | private Long id;
|
| | | @Column(name = "uiet_uid")
|
| | | private UserInfo user;
|
| | | @Column(name = "uiet_relation_id")
|
| | | private String relationId;
|
| | | @Column(name = "uiet_relation_update_time")
|
| | | private Date relationUpdateTime;
|
| | | @Column(name = "uiet_special_id")
|
| | | private String specialId;
|
| | | @Column(name = "uiet_special_update_time")
|
| | | private Date specialUpdateTime;
|
| | | @Column(name = "uiet_create_time")
|
| | | private Date createTime;
|
| | | @Column(name = "uiet_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 getRelationId() {
|
| | | return relationId;
|
| | | }
|
| | |
|
| | | public void setRelationId(String relationId) {
|
| | | this.relationId = relationId;
|
| | | }
|
| | |
|
| | | public Date getRelationUpdateTime() {
|
| | | return relationUpdateTime;
|
| | | }
|
| | |
|
| | | public void setRelationUpdateTime(Date relationUpdateTime) {
|
| | | this.relationUpdateTime = relationUpdateTime;
|
| | | }
|
| | |
|
| | | public String getSpecialId() {
|
| | | return specialId;
|
| | | }
|
| | |
|
| | | public void setSpecialId(String specialId) {
|
| | | this.specialId = specialId;
|
| | | }
|
| | |
|
| | | public Date getSpecialUpdateTime() {
|
| | | return specialUpdateTime;
|
| | | }
|
| | |
|
| | | public void setSpecialUpdateTime(Date specialUpdateTime) {
|
| | | this.specialUpdateTime = specialUpdateTime;
|
| | | }
|
| | |
|
| | | 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.bus.user; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | @Table("yeshi_ec_user_info_extra_taobao") |
| | | public class UserExtraTaoBaoInfo { |
| | | @Column(name = "uiet_id") |
| | | private Long id; |
| | | @Column(name = "uiet_uid") |
| | | private UserInfo user; |
| | | @Column(name = "uiet_relation_id") |
| | | private String relationId; |
| | | @Column(name = "uiet_relation_valid") |
| | | private Boolean relationValid;// 是否有效 |
| | | @Column(name = "uiet_relation_update_time") |
| | | private Date relationUpdateTime; |
| | | @Column(name = "uiet_special_id") |
| | | private String specialId; |
| | | @Column(name = "uiet_special_valid") |
| | | private Boolean specialValid;// 是否有效 |
| | | @Column(name = "uiet_special_update_time") |
| | | private Date specialUpdateTime; |
| | | @Column(name = "uiet_taobao_uid") |
| | | private String taoBaoUid;// 淘宝的用户ID |
| | | @Column(name = "uiet_taobao_order_end_6_num") |
| | | private String taoBaoOrderEnd6Num;// 订单结尾的6个数字 |
| | | @Column(name = "uiet_taobao_nick_name") |
| | | private String taoBaoNickName;// 淘宝昵称 |
| | | @Column(name = "uiet_create_time") |
| | | private Date createTime; |
| | | @Column(name = "uiet_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 getRelationId() { |
| | | return relationId; |
| | | } |
| | | |
| | | public void setRelationId(String relationId) { |
| | | this.relationId = relationId; |
| | | } |
| | | |
| | | public Date getRelationUpdateTime() { |
| | | return relationUpdateTime; |
| | | } |
| | | |
| | | public void setRelationUpdateTime(Date relationUpdateTime) { |
| | | this.relationUpdateTime = relationUpdateTime; |
| | | } |
| | | |
| | | public String getTaoBaoOrderEnd6Num() { |
| | | return taoBaoOrderEnd6Num; |
| | | } |
| | | |
| | | public void setTaoBaoOrderEnd6Num(String taoBaoOrderEnd6Num) { |
| | | this.taoBaoOrderEnd6Num = taoBaoOrderEnd6Num; |
| | | } |
| | | |
| | | public String getSpecialId() { |
| | | return specialId; |
| | | } |
| | | |
| | | public void setSpecialId(String specialId) { |
| | | this.specialId = specialId; |
| | | } |
| | | |
| | | public Boolean getRelationValid() { |
| | | return relationValid; |
| | | } |
| | | |
| | | public void setRelationValid(Boolean relationValid) { |
| | | this.relationValid = relationValid; |
| | | } |
| | | |
| | | public Boolean getSpecialValid() { |
| | | return specialValid; |
| | | } |
| | | |
| | | public void setSpecialValid(Boolean specialValid) { |
| | | this.specialValid = specialValid; |
| | | } |
| | | |
| | | public String getTaoBaoUid() { |
| | | return taoBaoUid; |
| | | } |
| | | |
| | | public void setTaoBaoUid(String taoBaoUid) { |
| | | this.taoBaoUid = taoBaoUid; |
| | | } |
| | | |
| | | public Date getSpecialUpdateTime() { |
| | | return specialUpdateTime; |
| | | } |
| | | |
| | | public void setSpecialUpdateTime(Date specialUpdateTime) { |
| | | this.specialUpdateTime = specialUpdateTime; |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | |
| | | public String getTaoBaoNickName() { |
| | | return taoBaoNickName; |
| | | } |
| | | |
| | | public void setTaoBaoNickName(String taoBaoNickName) { |
| | | this.taoBaoNickName = taoBaoNickName; |
| | | } |
| | | } |