package com.yeshi.fanli.util.goods.douyin.vo;
|
|
/**
|
* @author hxh
|
* @title: LiveSearchFilter
|
* @description: 直播搜索条件
|
* @date 2022/9/26 15:14
|
*/
|
public class DYLiveSearchFilter {
|
|
private int page;
|
/**
|
* 分⻚size,范围(0,100]
|
*/
|
private int pageSize;
|
/**
|
* 1-综合;2-销量;3-佣⾦率;4-粉丝数。不填默认为1
|
*/
|
private Integer sortBy;
|
/**
|
* 排序⽅式:0-降序;1-升序。
|
* 不填默认为0。若sort_by为
|
* 1, 则此字段⽆意义
|
*/
|
private Integer sortType;
|
/**
|
* 直播间状态筛选:0-在播和不
|
* 在播,1-在播,2-不在播。默
|
* 认为1,代表只出在播直播间
|
*/
|
private Integer status;
|
|
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 Integer getSortBy() {
|
return sortBy;
|
}
|
|
public void setSortBy(Integer sortBy) {
|
this.sortBy = sortBy;
|
}
|
|
public Integer getSortType() {
|
return sortType;
|
}
|
|
public void setSortType(Integer sortType) {
|
this.sortType = sortType;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
}
|