yujian
2019-07-16 c04327c1e6271e10c6d4f13ebb53438f6edca50e
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
package com.yeshi.fanli.dto.pdd;
 
public class PDDSearchFilter {
    private String kw;// 关键字
    private Long optId;// 标签类目ID
    private Integer page;// 页码
    private Integer pageSize;// 页数量
    private Integer sortType;// 排序类型
    private Boolean hasCoupon;// 是否有券
    private Boolean isBrand;// 是否为品牌商品
    private Long catId;// 分类ID
    private Long[] goodsIdList;// 商品列表ID
    private Integer merchantType;// 卖家类型
    private String pid;// 推广位ID
 
    public String getKw() {
        return kw;
    }
 
    public void setKw(String kw) {
        this.kw = kw;
    }
 
    public Long getOptId() {
        return optId;
    }
 
    public void setOptId(Long optId) {
        this.optId = optId;
    }
 
    public Integer getPage() {
        return page;
    }
 
    public void setPage(Integer page) {
        this.page = page;
    }
 
    public Integer getPageSize() {
        return pageSize;
    }
 
    public void setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
    }
 
    public Integer getSortType() {
        return sortType;
    }
 
    public void setSortType(Integer sortType) {
        this.sortType = sortType;
    }
 
    public Boolean getHasCoupon() {
        return hasCoupon;
    }
 
    public void setHasCoupon(Boolean hasCoupon) {
        this.hasCoupon = hasCoupon;
    }
 
    public Long getCatId() {
        return catId;
    }
 
    public void setCatId(Long catId) {
        this.catId = catId;
    }
 
    public Long[] getGoodsIdList() {
        return goodsIdList;
    }
 
    public void setGoodsIdList(Long[] goodsIdList) {
        this.goodsIdList = goodsIdList;
    }
 
    public Integer getMerchantType() {
        return merchantType;
    }
 
    public void setMerchantType(Integer merchantType) {
        this.merchantType = merchantType;
    }
 
    public String getPid() {
        return pid;
    }
 
    public void setPid(String pid) {
        this.pid = pid;
    }
 
    public Boolean getIsBrand() {
        return isBrand;
    }
 
    public void setIsBrand(Boolean isBrand) {
        this.isBrand = isBrand;
    }
}