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