admin
2019-02-18 69ca458784b49c11b33dbee404ee242b4fb0b9c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package org.fanli.facade.system.dto.taobao;
 
/**
 * 淘客的app信息
 * 
 * @author Administrator
 *
 */
public class TaoKeAppInfo {
    private String appKey;
    private String appSecret;
    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;
    }
 
}