admin
2019-08-02 90b211c63f9d596aa90b508f76eb916a30b68731
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package com.yeshi.fanli.dto.jd;
 
import java.io.Serializable;
import java.util.List;
 
public class JDFilter implements Serializable{
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    
    
    // 佣金
    public final static String SORTNAME_COMMISSION = "commission";
    // 佣金比例
    public final static String SORTNAME_COMMISSION_SHARE = "commissionShare";
    // 价格
    public final static String SORTNAME_PRICE = "price";
    // 30天引入订单数量
    public final static String SORTNAME_ORDER_COUNT_30DAYS = "inOrderCount30Days";
    // 30天支出佣金
    public final static String SORTNAME_ORDER_COMM_30DAYS = "inOrderComm30Days";
 
    // 排序方式
    public final static String SORT_ASC = "asc";
    public final static String SORT_DESC = "desc";
 
    private int pageIndex;// 页码 
    private int pageSize;// 每页的数量  每页数量,单页数最大30,默认20
    private Long cid1; // 一级类目id
    private Long cid2; // 二级类目id
    private Long cid3; // 三级类目id
    private String keyword; // 关键字
    private String owner; // 商品类型:自营[g],POP[p]
    private Integer isCoupon; // 是否是优惠券商品,1:有优惠券,0:无优惠券
    private List<Long> listId; // skuid集合(一次最多支持查询100个sku),数组类型开发时记得加[]
    private Double pricefrom; // 商品价格下限
    private Double priceto; // 商品价格上限
    private Integer commissionShareStart; // 佣金比例区间开始
    private Integer commissionShareEnd;// 佣金比例区间结束
    private Integer shopId;// 店铺ID
    private String brandCode;// 品牌code:7998
    private Integer isHot;// 是否是爆款,1:爆款商品,0:非爆款商品
    private Integer isPG; // 是否是拼购商品,1:拼购商品,0:非拼购商品
    private Double pingouPriceEnd; // 拼购价格区间结束
    private Double pingouPriceStart; // 拼购价格区间开始
    private String sort; // 排序方式 : 倒序desc 正序asc(仅限价格)
    private String sortName; // 排序名称
 
    public int getPageIndex() {
        return pageIndex;
    }
 
    public void setPageIndex(int pageIndex) {
        this.pageIndex = pageIndex;
    }
 
    public int getPageSize() {
        return pageSize;
    }
 
    public void setPageSize(int pageSize) {
        this.pageSize = pageSize;
    }
 
    public Long getCid1() {
        return cid1;
    }
 
    public void setCid1(Long cid1) {
        this.cid1 = cid1;
    }
 
    public Long getCid2() {
        return cid2;
    }
 
    public void setCid2(Long cid2) {
        this.cid2 = cid2;
    }
 
    public Long getCid3() {
        return cid3;
    }
 
    public void setCid3(Long cid3) {
        this.cid3 = cid3;
    }
 
    public String getKeyword() {
        return keyword;
    }
 
    public void setKeyword(String keyword) {
        this.keyword = keyword;
    }
 
    public String getOwner() {
        return owner;
    }
 
    public void setOwner(String owner) {
        this.owner = owner;
    }
 
    public Integer getIsCoupon() {
        return isCoupon;
    }
 
    public void setIsCoupon(Integer isCoupon) {
        this.isCoupon = isCoupon;
    }
 
    public List<Long> getListId() {
        return listId;
    }
 
    public void setListId(List<Long> listId) {
        this.listId = listId;
    }
 
    public Double getPricefrom() {
        return pricefrom;
    }
 
    public void setPricefrom(Double pricefrom) {
        this.pricefrom = pricefrom;
    }
 
    public Double getPriceto() {
        return priceto;
    }
 
    public void setPriceto(Double priceto) {
        this.priceto = priceto;
    }
 
    public Integer getCommissionShareStart() {
        return commissionShareStart;
    }
 
    public void setCommissionShareStart(Integer commissionShareStart) {
        this.commissionShareStart = commissionShareStart;
    }
 
    public Integer getCommissionShareEnd() {
        return commissionShareEnd;
    }
 
    public void setCommissionShareEnd(Integer commissionShareEnd) {
        this.commissionShareEnd = commissionShareEnd;
    }
 
    public Integer getShopId() {
        return shopId;
    }
 
    public void setShopId(Integer shopId) {
        this.shopId = shopId;
    }
 
    public String getBrandCode() {
        return brandCode;
    }
 
    public void setBrandCode(String brandCode) {
        this.brandCode = brandCode;
    }
 
    public Integer getIsHot() {
        return isHot;
    }
 
    public void setIsHot(Integer isHot) {
        this.isHot = isHot;
    }
 
    public Integer getIsPG() {
        return isPG;
    }
 
    public void setIsPG(Integer isPG) {
        this.isPG = isPG;
    }
 
    public Double getPingouPriceEnd() {
        return pingouPriceEnd;
    }
 
    public void setPingouPriceEnd(Double pingouPriceEnd) {
        this.pingouPriceEnd = pingouPriceEnd;
    }
 
    public Double getPingouPriceStart() {
        return pingouPriceStart;
    }
 
    public void setPingouPriceStart(Double pingouPriceStart) {
        this.pingouPriceStart = pingouPriceStart;
    }
 
    public String getSort() {
        return sort;
    }
 
    public void setSort(String sort) {
        this.sort = sort;
    }
 
    public String getSortName() {
        return sortName;
    }
 
    public void setSortName(String sortName) {
        this.sortName = sortName;
    }
 
}