admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
220
package com.yeshi.fanli.util.goods.douyin.vo;
 
import java.util.List;
 
/**
 * @author hxh
 * @title: DYGoodsSearchFilter
 * @description: 抖音商品筛选条件
 * @date 2022/9/27 14:16
 */
public class DYGoodsSearchFilter {
 
    /**
     * 商品第⼏⻚,从1开始
     */
    private int page;
    /**
     * 商品每⻚数量,最⼤20,最
     * ⼩1
     */
    private int pageSize;
    /**
     * 商品关键词
     */
    private String title;
    /**
     * 筛选商品⼀级类⽬,从商品
     * 类⽬接⼝可获得⼀级类⽬
     */
    private List<Integer> first_cids;
    /**
     * 筛选商品⼆级类⽬, 从商品
     * 类⽬接⼝可获得⼆级类⽬
     */
    private List<Integer> second_cids;
    /**
     * 筛选商品三级类⽬,从商品
     * 类⽬接⼝可获得三级类⽬
     */
    private List<Integer> third_cids;
    /**
     * 最低价格,包含,单位分
     */
    private Integer price_min;
    /**
     * 最⾼价格,不包含,单位
     * 分。应保证
     * price_max>=price_min
     */
    private Integer price_max;
    /**
     * 历史销量最⼩值
     */
    private Integer sell_num_min;
    /**
     * 历史销量最⼤值。应保证
     * sell_num_max>sell_num_
     * min
     */
    private Integer sell_num_max;
    /**
     * 排序类型:0 默认排序;1
     * 历史销量排序;2价格排
     * 序;3佣⾦排序;4佣⾦⽐例
     * 排序。不填默认为0。
     */
    private Integer search_type;
    /**
     * 0 升序,1 降序。不填默认
     * 为0。若search_type为0,
     * 则此值⽆意义
     */
    private Integer order_type;
    /**
     * 最低分佣,单位分
     */
    private Integer cos_fee_min;
    /**
     * 最⾼分佣,单位分。应保证
     */
    private Integer cos_fee_max;
    /**
     * 分佣⽐例百分⽐乘以100:
     * 1.1%,传1.1*100 = 110
     */
    private Integer cos_ratio_min;
    /**
     * 分佣⽐例百分⽐乘以100:
     * 1.1%,传1.1*100 = 110
     */
    private Integer cos_ratio_max;
 
    public int getPage() {
        return page;
    }
 
    public void setPage(int page) {
        this.page = page;
    }
 
    public int getPageSize() {
        return pageSize;
    }
 
    public void setPageSize(int pageSize) {
        this.pageSize = pageSize;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public List<Integer> getFirst_cids() {
        return first_cids;
    }
 
    public void setFirst_cids(List<Integer> first_cids) {
        this.first_cids = first_cids;
    }
 
    public List<Integer> getSecond_cids() {
        return second_cids;
    }
 
    public void setSecond_cids(List<Integer> second_cids) {
        this.second_cids = second_cids;
    }
 
    public List<Integer> getThird_cids() {
        return third_cids;
    }
 
    public void setThird_cids(List<Integer> third_cids) {
        this.third_cids = third_cids;
    }
 
    public Integer getPrice_min() {
        return price_min;
    }
 
    public void setPrice_min(Integer price_min) {
        this.price_min = price_min;
    }
 
    public Integer getPrice_max() {
        return price_max;
    }
 
    public void setPrice_max(Integer price_max) {
        this.price_max = price_max;
    }
 
    public Integer getSell_num_min() {
        return sell_num_min;
    }
 
    public void setSell_num_min(Integer sell_num_min) {
        this.sell_num_min = sell_num_min;
    }
 
    public Integer getSell_num_max() {
        return sell_num_max;
    }
 
    public void setSell_num_max(Integer sell_num_max) {
        this.sell_num_max = sell_num_max;
    }
 
    public Integer getSearch_type() {
        return search_type;
    }
 
    public void setSearch_type(Integer search_type) {
        this.search_type = search_type;
    }
 
    public Integer getOrder_type() {
        return order_type;
    }
 
    public void setOrder_type(Integer order_type) {
        this.order_type = order_type;
    }
 
    public Integer getCos_fee_min() {
        return cos_fee_min;
    }
 
    public void setCos_fee_min(Integer cos_fee_min) {
        this.cos_fee_min = cos_fee_min;
    }
 
    public Integer getCos_fee_max() {
        return cos_fee_max;
    }
 
    public void setCos_fee_max(Integer cos_fee_max) {
        this.cos_fee_max = cos_fee_max;
    }
 
    public Integer getCos_ratio_min() {
        return cos_ratio_min;
    }
 
    public void setCos_ratio_min(Integer cos_ratio_min) {
        this.cos_ratio_min = cos_ratio_min;
    }
 
    public Integer getCos_ratio_max() {
        return cos_ratio_max;
    }
 
    public void setCos_ratio_max(Integer cos_ratio_max) {
        this.cos_ratio_max = cos_ratio_max;
    }
}