admin
2022-05-19 56364722d3ed70d48ec41f567a4e59e5ccbbb868
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
package com.ks.app.dto.admin;
 
import java.util.List;
 
/**
 * @author hxh
 * @title: PageNav
 * @description: 页面导航
 * @date 2022/5/18 16:33
 */
public class PageNav {
 
    private String name;
    private String path;
    private String icon;
    private List<PageNav> children;
 
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getPath() {
        return path;
    }
 
    public void setPath(String path) {
        this.path = path;
    }
 
    public String getIcon() {
        return icon;
    }
 
    public void setIcon(String icon) {
        this.icon = icon;
    }
 
    public List<PageNav> getChildren() {
        return children;
    }
 
    public void setChildren(List<PageNav> children) {
        this.children = children;
    }
}