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