admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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;
    }
 
}