package com.yeshi.buwan.domain;
|
|
import javax.persistence.Entity;
|
import javax.persistence.ManyToOne;
|
|
@Entity
|
public class WXStatistics {
|
private String id;
|
@ManyToOne
|
private UserInfo user;
|
@ManyToOne
|
private WXAd wxad;
|
private String createtime;
|
private String action;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public UserInfo getUser() {
|
return user;
|
}
|
|
public void setUser(UserInfo user) {
|
this.user = user;
|
}
|
|
public WXAd getWxad() {
|
return wxad;
|
}
|
|
public void setWxad(WXAd wxad) {
|
this.wxad = wxad;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
public String getAction() {
|
return action;
|
}
|
|
public void setAction(String action) {
|
this.action = action;
|
}
|
|
}
|