package com.yeshi.buwan.dto.tb;
|
|
/**
|
* 淘客的app信息
|
*
|
* @author Administrator
|
*
|
*/
|
public class TaoKeAppInfo {
|
private String appKey;
|
private String appSecret;
|
|
public TaoKeAppInfo(String appKey, String appSecret) {
|
this.appKey = appKey;
|
this.appSecret = appSecret;
|
}
|
|
public TaoKeAppInfo(String appKey, String appSecret, String pid) {
|
this.appKey = appKey;
|
this.appSecret = appSecret;
|
this.pid = pid;
|
}
|
|
public TaoKeAppInfo() {
|
}
|
|
private String pid;
|
private String adzoneId;
|
|
public String getAdzoneId() {
|
return adzoneId;
|
}
|
|
public void setAdzoneId(String adzoneId) {
|
this.adzoneId = adzoneId;
|
}
|
|
public String getAppKey() {
|
return appKey;
|
}
|
|
public void setAppKey(String appKey) {
|
this.appKey = appKey;
|
}
|
|
public String getAppSecret() {
|
return appSecret;
|
}
|
|
public void setAppSecret(String appSecret) {
|
this.appSecret = appSecret;
|
}
|
|
public String getPid() {
|
return pid;
|
}
|
|
public void setPid(String pid) {
|
this.pid = pid;
|
}
|
|
}
|