admin
2024-10-30 010ef2a907e66efd4702443c06cdd18f8a7ffa5b
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
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;
    }
 
}