admin
2019-02-21 7e57a20c0ccde504c2f2b2b9fd4a9fd7c89d5e92
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
package org.fanli.facade.user.entity.taobao;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
@Table("yeshi_ec_pid_user")
public class PidUser {
    // 商品分享PID
    public final static int TYPE_SHARE_GOODS = 0;
 
    // 商品返利-Android
    public final static int TYPE_FANLI_ANDROID = 1;
 
    // 商品返利-IOS
    public final static int TYPE_FANLI_IOS = 2;
 
    @Column(name = "id")
    private Long id;
    @Column(name = "uid")
    private Long uid;
 
    @Column(name = "pid")
    private String pid;
 
    @Column(name = "pid_type")
    private Integer type;
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    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 String getPid() {
        return pid;
    }
 
    public void setPid(String pid) {
        this.pid = pid;
    }
 
}