123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- package com.simuwang.manage.dto;
- import java.util.List;
- /**
- * @author wangzaijun
- * @date 2024/9/13 8:41
- * @description 用户菜单树
- */
- public class UserMenuTreeDTO {
- private Integer id;
- private Integer pid;
- private Integer sort;
- private String name;
- private String code;
- private String path;
- private String component;
- private String query;
- private String menuType;
- private String visible;
- private String icon;
- private List<UserMenuTreeDTO> children;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getPid() {
- return pid;
- }
- public void setPid(Integer pid) {
- this.pid = pid;
- }
- public Integer getSort() {
- return sort;
- }
- public void setSort(Integer sort) {
- this.sort = sort;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getPath() {
- return path;
- }
- public void setPath(String path) {
- this.path = path;
- }
- public String getComponent() {
- return component;
- }
- public void setComponent(String component) {
- this.component = component;
- }
- public String getQuery() {
- return query;
- }
- public void setQuery(String query) {
- this.query = query;
- }
- public List<UserMenuTreeDTO> getChildren() {
- return children;
- }
- public void setChildren(List<UserMenuTreeDTO> children) {
- this.children = children;
- }
- public String getMenuType() {
- return menuType;
- }
- public void setMenuType(String menuType) {
- this.menuType = menuType;
- }
- public String getVisible() {
- return visible;
- }
- public void setVisible(String visible) {
- this.visible = visible;
- }
- public String getIcon() {
- return icon;
- }
- public void setIcon(String icon) {
- this.icon = icon;
- }
- }
|