admin
2019-01-23 11f7b5339af12ae57f3c95cc7543bcb86f88053c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
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;
    }
 
}