admin
2019-04-19 7da75926f4f910a0fa23ab96f2af637d0a9578a0
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
package com.yeshi.fanli.dto.jd;
 
public class JDSearchFilter {
    private String key;// 关键字
    Integer isZY;// 是否为自营 1-自营
    Integer hasCoupon;// 是否有券 1-有券
    Integer categoryId;// 分类ID
    int pageNo;// 页码
    int pageSize;// 每页的数量
 
    public Integer getIsZY() {
        return isZY;
    }
 
    public void setIsZY(Integer isZY) {
        this.isZY = isZY;
    }
 
    public Integer getHasCoupon() {
        return hasCoupon;
    }
 
    public void setHasCoupon(Integer hasCoupon) {
        this.hasCoupon = hasCoupon;
    }
 
    public Integer getCategoryId() {
        return categoryId;
    }
 
    public void setCategoryId(Integer categoryId) {
        this.categoryId = categoryId;
    }
 
    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;
    }
}