package com.ks.lijin.pojo.DTO.taobao;
|
|
import java.util.List;
|
|
import com.google.gson.annotations.Expose;
|
|
/**
|
* 淘宝搜索分类实体
|
*
|
* @author Administrator
|
*
|
*/
|
public class TaoBaoSearchNav {
|
private int count;
|
private String flag;
|
@Expose
|
private long id;
|
private int level;
|
@Expose
|
private String name;
|
@Expose
|
private String type;
|
@Expose
|
private List<TaoBaoSearchNav> subIds;
|
@Expose
|
private int selector; //0单选 1多选
|
|
public TaoBaoSearchNav(int count, String flag, long id, int level, String name, String type) {
|
this.count = count;
|
this.flag = flag;
|
this.id = id;
|
this.level = level;
|
this.name = name;
|
this.type = type;
|
}
|
|
public TaoBaoSearchNav() {
|
|
}
|
|
public int getSelector() {
|
return selector;
|
}
|
|
public void setSelector(int selector) {
|
this.selector = selector;
|
}
|
|
public int getCount() {
|
return count;
|
}
|
|
public void setCount(int count) {
|
this.count = count;
|
}
|
|
public String getFlag() {
|
return flag;
|
}
|
|
public void setFlag(String flag) {
|
this.flag = flag;
|
}
|
|
public long getId() {
|
return id;
|
}
|
|
public void setId(long id) {
|
this.id = id;
|
}
|
|
public int getLevel() {
|
return level;
|
}
|
|
public void setLevel(int level) {
|
this.level = level;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public List<TaoBaoSearchNav> getSubIds() {
|
return subIds;
|
}
|
|
public void setSubIds(List<TaoBaoSearchNav> subIds) {
|
this.subIds = subIds;
|
}
|
|
}
|