admin
2021-06-11 ae4dc86b64bd8ef85bc832106741fb98e8d516da
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
package com.tejia.lijin.app.entity;
 
import com.google.gson.annotations.Expose;
 
import java.io.Serializable;
 
/**
 * 搜索结果筛选
 */
public class SearchFilter implements Serializable {
 
    @Expose
    private boolean coupon;//券
    @Expose
    private boolean tmall;//天猫
    @Expose
    private boolean brand;//品牌
    @Expose
    private boolean zy;//自营
    @Expose
    private String minPrice;//最低价格
    @Expose
    private String maxPrice;//最高价格
    @Expose
    private boolean snfwservice;//苏宁服务
    @Expose
    private boolean snhwg;//苏宁国际
    @Expose
    private boolean suningService;//苏宁自营
    @Expose
    private boolean pgSearch;//拼购
 
 
    //初始化数据
    public void initData() {
        coupon = false;
        tmall = false;
        brand = false;
        zy = false;
        minPrice = "";
        maxPrice = "";
    }
 
 
    public boolean isSnfwservice() {
        return snfwservice;
    }
 
    public void setSnfwservice(boolean snfwservice) {
        this.snfwservice = snfwservice;
    }
 
    public boolean isSnhwg() {
        return snhwg;
    }
 
    public void setSnhwg(boolean snhwg) {
        this.snhwg = snhwg;
    }
 
    public boolean isSuningService() {
        return suningService;
    }
 
    public void setSuningService(boolean suningService) {
        this.suningService = suningService;
    }
 
    public boolean isPgSearch() {
        return pgSearch;
    }
 
    public void setPgSearch(boolean pgSearch) {
        this.pgSearch = pgSearch;
    }
 
 
    public boolean isCoupon() {
        return coupon;
    }
 
    public void setCoupon(boolean coupon) {
        this.coupon = coupon;
    }
 
    public boolean isTmall() {
        return tmall;
    }
 
    public void setTmall(boolean tmall) {
        this.tmall = tmall;
    }
 
    public boolean isBrand() {
        return brand;
    }
 
    public void setBrand(boolean brand) {
        this.brand = brand;
    }
 
    public boolean isZy() {
        return zy;
    }
 
    public void setZy(boolean zy) {
        this.zy = zy;
    }
 
    public String getMinPrice() {
        return minPrice;
    }
 
    public void setMinPrice(String minPrice) {
        this.minPrice = minPrice;
    }
 
    public String getMaxPrice() {
        return maxPrice;
    }
 
    public void setMaxPrice(String maxPrice) {
        this.maxPrice = maxPrice;
    }
}