package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Created by weikou2015 on 2017/3/16.
|
*/
|
|
public class Filter implements Serializable {
|
@Expose
|
private String id;
|
boolean isMore;
|
@Expose
|
private String name;
|
@Expose
|
private String selector;
|
@Expose
|
private String type;
|
@Expose
|
private String level;
|
@Expose
|
private List<FilterCondition> subIds;
|
|
|
public String getSelector() {
|
return selector;
|
}
|
|
public void setSelector(String selector) {
|
this.selector = selector;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public boolean isMore() {
|
return isMore;
|
}
|
|
public void setMore(boolean more) {
|
isMore = more;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getLevel() {
|
return level;
|
}
|
|
public void setLevel(String level) {
|
this.level = level;
|
}
|
|
public List<FilterCondition> getSubIds() {
|
return subIds;
|
}
|
|
public void setSubIds(List<FilterCondition> subIds) {
|
this.subIds = subIds;
|
}
|
}
|