admin
2020-05-06 24a8d17e007545f7426c48352109aa1a9c6587ee
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
package com.yeshi.fanli.dto.jd;
 
public class JDSearchFilter {
 
    // 佣金
    public final static String SORTNAME_COMMISSION = "wlCommission";
    // 佣金比例
    public final static String SORTNAME_COMMISSION_SHARE = "wlCommissionShare";
    // 价格
    public final static String SORTNAME_PRICE = "wlPrice";
    // 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 pageNo;// 页码
    private int pageSize;// 每页的数量
    private String key;// 关键字
 
    private int isZY;// 是否为自营: 默认0 1-自营
    private int isPinGou;// 是否拼购 : 默认0 1拼购
    private int orientationFlag; // 京推计划: 默认0 1是
    private int hasCoupon;// 是否有券: 默认0 1-有券
    private int deliveryType; // 是否京东配送: 0 默认 1京配
    private int isCare; // 爱心东东: 默认0 1是
 
    private Integer categoryId;// 一级分类ID
    private Integer cat2Id;// 二级分类ID
    private Integer cat3Id;// 三级分类ID
    private Integer fromCommissionRatio; // 佣金比例最小值
    private Integer toCommissionRatio; // 佣金比例最大值
    private Integer fromPrice; // 价格最小值
    private Integer toPrice; // 价格最大值
    private String sort; // 排序方式 : 倒序desc 正序asc(仅限价格)
    private String sortName; // 排序名称(:佣金:wlCommission 佣金比例:wlCommissionShare 价格: wlPrice inOrderCount30Days
 
    public int getPageNo() {
        return pageNo;
    }
 
    public void setPageNo(int pageNo) {
        this.pageNo = pageNo;
    }
 
    public int getPageSize() {
        return pageSize;
    }
 
    public void setPageSize(int pageSize) {
        this.pageSize = pageSize;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public int getIsZY() {
        return isZY;
    }
 
    public void setIsZY(int isZY) {
        this.isZY = isZY;
    }
 
    public int getIsPinGou() {
        return isPinGou;
    }
 
    public void setIsPinGou(int isPinGou) {
        this.isPinGou = isPinGou;
    }
 
    public int getOrientationFlag() {
        return orientationFlag;
    }
 
    public void setOrientationFlag(int orientationFlag) {
        this.orientationFlag = orientationFlag;
    }
 
    public int getHasCoupon() {
        return hasCoupon;
    }
 
    public void setHasCoupon(int hasCoupon) {
        this.hasCoupon = hasCoupon;
    }
 
    public int getDeliveryType() {
        return deliveryType;
    }
 
    public void setDeliveryType(int deliveryType) {
        this.deliveryType = deliveryType;
    }
 
    public int getIsCare() {
        return isCare;
    }
 
    public void setIsCare(int isCare) {
        this.isCare = isCare;
    }
 
    public Integer getCategoryId() {
        return categoryId;
    }
 
    public void setCategoryId(Integer categoryId) {
        this.categoryId = categoryId;
    }
 
    public Integer getFromCommissionRatio() {
        return fromCommissionRatio;
    }
 
    public void setFromCommissionRatio(Integer fromCommissionRatio) {
        this.fromCommissionRatio = fromCommissionRatio;
    }
 
    public Integer getToCommissionRatio() {
        return toCommissionRatio;
    }
 
    public void setToCommissionRatio(Integer toCommissionRatio) {
        this.toCommissionRatio = toCommissionRatio;
    }
 
    public Integer getFromPrice() {
        return fromPrice;
    }
 
    public void setFromPrice(Integer fromPrice) {
        this.fromPrice = fromPrice;
    }
 
    public Integer getToPrice() {
        return toPrice;
    }
 
    public void setToPrice(Integer toPrice) {
        this.toPrice = toPrice;
    }
 
    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;
    }
 
    public Integer getCat2Id() {
        return cat2Id;
    }
 
    public void setCat2Id(Integer cat2Id) {
        this.cat2Id = cat2Id;
    }
 
    public Integer getCat3Id() {
        return cat3Id;
    }
 
    public void setCat3Id(Integer cat3Id) {
        this.cat3Id = cat3Id;
    }
 
}