doum
6 天以前 2b287056e2f59518888d05a1bbc7e5a55fbd84d5
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
106
107
108
109
package com.doumee.keyCabinet.utils;
 
import java.io.Serializable;
 
public class AdListResponseParam implements Serializable {
    private static final long serialVersionUID = 2536374791181166950L;
    private String adId;
    private String title;
    private String type;
    private String imgurl;
    private String content;
    private String link;
    private String recPrd;
    private String lastDate;
    private String startDate;
    private String addr;
    private String isShopOnline;
 
    public AdListResponseParam() {
    }
 
    public String getIsShopOnline() {
        return this.isShopOnline;
    }
 
    public void setIsShopOnline(String isShopOnline) {
        this.isShopOnline = isShopOnline;
    }
 
    public String getAddr() {
        return this.addr;
    }
 
    public void setAddr(String addr) {
        this.addr = addr;
    }
 
    public String getAdId() {
        return this.adId;
    }
 
    public void setAdId(String adId) {
        this.adId = adId;
    }
 
    public String getTitle() {
        return this.title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getType() {
        return this.type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getImgurl() {
        return this.imgurl;
    }
 
    public void setImgurl(String imgurl) {
        this.imgurl = imgurl;
    }
 
    public String getContent() {
        return this.content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getLink() {
        return this.link;
    }
 
    public void setLink(String link) {
        this.link = link;
    }
 
    public String getRecPrd() {
        return this.recPrd;
    }
 
    public void setRecPrd(String recPrd) {
        this.recPrd = recPrd;
    }
 
    public String getLastDate() {
        return this.lastDate;
    }
 
    public void setLastDate(String lastDate) {
        this.lastDate = lastDate;
    }
 
    public String getStartDate() {
        return this.startDate;
    }
 
    public void setStartDate(String startDate) {
        this.startDate = startDate;
    }
}