package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by weikou2015 on 2018/5/17.
|
* 阿里百川 所需参数
|
*/
|
|
public class TbPidInfo implements Serializable {
|
@Expose
|
String pid;
|
@Expose
|
String appKey;
|
@Expose
|
String siteId;
|
@Expose
|
String adZoneId;
|
|
public String getPid() {
|
return pid;
|
}
|
|
public void setPid(String pid) {
|
this.pid = pid;
|
}
|
|
public String getAppKey() {
|
return appKey;
|
}
|
|
public void setAppKey(String appKey) {
|
this.appKey = appKey;
|
}
|
|
public String getSiteId() {
|
return siteId;
|
}
|
|
public void setSiteId(String siteId) {
|
this.siteId = siteId;
|
}
|
|
public String getAdZoneId() {
|
return adZoneId;
|
}
|
|
public void setAdZoneId(String adZoneId) {
|
this.adZoneId = adZoneId;
|
}
|
}
|