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