package com.yeshi.buwan.domain.ad;
|
|
public class AdStatistics {
|
private String id;
|
private String key;
|
private String platformId;
|
private String time;
|
private int type;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getPlatformId() {
|
return platformId;
|
}
|
|
public void setPlatformId(String platformId) {
|
this.platformId = platformId;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
}
|