admin
2021-06-30 a3304721c2e45e0f2ebd3139fdd623353f2ac72a
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
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;
    }
 
}