package com.yeshi.buwan.domain.ad;
|
|
import com.google.gson.annotations.Expose;
|
|
public class MineAd {
|
@Expose
|
private String id;
|
@Expose
|
private String name;
|
private boolean open;
|
@Expose
|
private boolean first;
|
@Expose
|
private int percent;
|
@Expose
|
private String appid1;
|
@Expose
|
private String appid2;
|
private String createtime;
|
@Expose
|
private AdPlatform adPlatform;
|
@Expose
|
private AdKeys adKey;
|
|
public AdKeys getAdKey() {
|
return adKey;
|
}
|
|
public void setAdKey(AdKeys adKey) {
|
this.adKey = adKey;
|
}
|
|
public AdPlatform getAdPlatform() {
|
return adPlatform;
|
}
|
|
public void setAdPlatform(AdPlatform adPlatform) {
|
this.adPlatform = adPlatform;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public boolean isOpen() {
|
return open;
|
}
|
|
public void setOpen(boolean open) {
|
this.open = open;
|
}
|
|
public boolean isFirst() {
|
return first;
|
}
|
|
public void setFirst(boolean first) {
|
this.first = first;
|
}
|
|
public int getPercent() {
|
return percent;
|
}
|
|
public void setPercent(int percent) {
|
this.percent = percent;
|
}
|
|
public String getAppid1() {
|
return appid1;
|
}
|
|
public void setAppid1(String appid1) {
|
this.appid1 = appid1;
|
}
|
|
public String getAppid2() {
|
return appid2;
|
}
|
|
public void setAppid2(String appid2) {
|
this.appid2 = appid2;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
}
|