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;
|
}
|
}
|