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;
|
}
|
|
}
|